1 | <?php |
||
18 | class Category |
||
19 | { |
||
20 | /** |
||
21 | * @ORM\Column(type="integer") |
||
22 | * @ORM\Id |
||
23 | * @ORM\GeneratedValue(strategy="AUTO") |
||
24 | */ |
||
25 | protected $id; |
||
26 | |||
27 | /** |
||
28 | * @ORM\Column(type="string", length=100) |
||
29 | */ |
||
30 | protected $title; |
||
31 | |||
32 | public function getId() |
||
36 | |||
37 | public function setTitle($title) |
||
41 | |||
42 | public function getTitle() |
||
46 | } |
||
47 |