1 | <?php |
||
20 | class Category |
||
21 | { |
||
22 | /** |
||
23 | * @ORM\Column(type="integer") |
||
24 | * @ORM\Id |
||
25 | * @ORM\GeneratedValue(strategy="AUTO") |
||
26 | */ |
||
27 | protected $id; |
||
28 | |||
29 | /** |
||
30 | * @ORM\Column(type="string", length=100) |
||
31 | */ |
||
32 | protected $title; |
||
33 | |||
34 | public function getId(): ?int |
||
38 | |||
39 | public function setTitle(?string $title): void |
||
43 | |||
44 | public function getTitle(): ?string |
||
48 | } |
||
49 |