src/Entity/Categories.php line 15
<?phpdeclare(strict_types=1);namespace App\Entity;use App\Utils\Traits\EntityId_TimestampTrait;use Doctrine\ORM\Mapping as ORM;/*** Categories*/#[ORM\Table(name: 'categories')]#[ORM\Entity(repositoryClass: 'App\Repository\CategoriesRepository')]class Categories{use EntityId_TimestampTrait;#[ORM\Column(type: 'string', length: 255)]private $title;#[ORM\Column(type: 'boolean', nullable: true)]private $poular;public function getTitle(): ?string{return $this->title;}public function setTitle(string $title): self{$this->title = $title;return $this;}public function isPoular(): ?bool{return $this->poular;}public function setPoular(?bool $poular): self{$this->poular = $poular;return $this;}}