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() |
||
33 | { |
||
34 | return $this->id; |
||
35 | } |
||
36 | |||
37 | public function setTitle($title) |
||
38 | { |
||
39 | $this->title = $title; |
||
40 | } |
||
41 | |||
42 | public function getTitle() |
||
43 | { |
||
44 | return $this->title; |
||
45 | } |
||
46 | } |
||
47 |