1 | <?php |
||
12 | class User extends BaseUser |
||
13 | { |
||
14 | /** |
||
15 | * @var int |
||
16 | * |
||
17 | * @ORM\Column(name="user_id", type="integer") |
||
18 | * @ORM\Id |
||
19 | * @ORM\GeneratedValue(strategy="AUTO") |
||
20 | */ |
||
21 | protected $id; |
||
22 | |||
23 | /** |
||
24 | * Gets the value of id. |
||
25 | * |
||
26 | * @return int |
||
27 | */ |
||
28 | public function getId() |
||
32 | |||
33 | /** |
||
34 | * Sets the value of id. |
||
35 | * |
||
36 | * @param int $id the id |
||
37 | * |
||
38 | * @return self |
||
39 | */ |
||
40 | public function setId($id) |
||
46 | } |
||
47 |