ДЖ
class Tags
{
/
* @ORM\Column(type="primary")
*/
private $id;
/
* @ORM\Column(type="string")
*/
private $code;
/
* @ORM\Column(type="integer")
*/
private $createdAt;
/
* @ORM\Column(type="integer")
*/
private $updatedAt;
/* GETTERS */
/**
* @return int
*/
public function getId()
{
return $this->id;
}
public function getCode(): string
{
return (string)$this->code;
}
/* SETTERS */
public function setCode(string $code): void
{
$this->code = $code;
}
}