1 | <?php |
||
5 | trait IdentityTrait |
||
6 | { |
||
7 | /** |
||
8 | * Identifiant |
||
9 | * |
||
10 | * @var mixed |
||
11 | */ |
||
12 | protected $id; |
||
13 | |||
14 | /** |
||
15 | * Get the value of Identifiant |
||
16 | * |
||
17 | * @return mixed |
||
18 | */ |
||
19 | public function getId() |
||
23 | |||
24 | /** |
||
25 | * Set the value of Identifiant |
||
26 | * |
||
27 | * @param mixed id |
||
28 | * |
||
29 | * @return self |
||
30 | */ |
||
31 | public function setId($value) |
||
37 | } |
||
38 |