<?php
namespace App\Entity;
use App\Repository\BasketsRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=BasketsRepository::class)
*/
class Baskets
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=50)
*/
private $phpsessid;
/**
* @ORM\Column(type="smallint")
*/
private $element;
/**
* @ORM\Column(type="datetime")
*/
private $created;
public function getId(): ?int
{
return $this->id;
}
public function getPhpsessid(): ?string
{
return $this->phpsessid;
}
public function setPhpsessid(string $phpsessid): self
{
$this->phpsessid = $phpsessid;
return $this;
}
public function getElement(): ?int
{
return $this->element;
}
public function setElement(int $element): self
{
$this->element = $element;
return $this;
}
public function getCreated(): ?\DateTimeInterface
{
return $this->created;
}
public function setCreated(\DateTimeInterface $created): self
{
$this->created = $created;
return $this;
}
}