| 1 | <?php |
||
| 8 | trait IdTrait |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var int Primary key |
||
| 12 | * |
||
| 13 | * @ORM\Id |
||
| 14 | * @ORM\Column(type="integer") |
||
| 15 | * @ORM\GeneratedValue(strategy="IDENTITY") |
||
| 16 | */ |
||
| 17 | protected $id; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Return primary key identifier. |
||
| 21 | * |
||
| 22 | * @return int |
||
| 23 | */ |
||
| 24 | public function getId() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Sets primary key identifier. |
||
| 31 | * |
||
| 32 | * @param int $id |
||
| 33 | * |
||
| 34 | * @return object |
||
| 35 | */ |
||
| 36 | public function setId($id) |
||
| 42 | } |
||
| 43 |