1 | <?php |
||
11 | class Product |
||
12 | { |
||
13 | /** |
||
14 | * @ORM\Id |
||
15 | * @ORM\Column(type="integer"); |
||
16 | * @ORM\GeneratedValue(strategy="AUTO") |
||
17 | */ |
||
18 | protected $id; |
||
19 | |||
20 | /** |
||
21 | * @ORM\Column(type="string", nullable=true) |
||
22 | */ |
||
23 | protected $name; |
||
24 | |||
25 | /** |
||
26 | * @ORM\ManyToMany(targetEntity="Category") |
||
27 | */ |
||
28 | protected $categories; |
||
29 | |||
30 | /** |
||
31 | * @return int|null |
||
32 | */ |
||
33 | public function getId() |
||
37 | |||
38 | public function setName($name) |
||
44 | |||
45 | public function getName() |
||
49 | |||
50 | public function setCategories($categories) |
||
56 | |||
57 | public function getCategories() |
||
61 | } |
||
62 |