1 | <?php |
||
11 | class Country |
||
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 | * @return int|null |
||
27 | */ |
||
28 | public function getId() |
||
32 | |||
33 | public function setName($name) |
||
39 | |||
40 | public function getName() |
||
44 | } |
||
45 |