1 | <?php |
||
20 | trait StringIdTrait { |
||
21 | |||
22 | /** |
||
23 | * Id. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $id; |
||
28 | |||
29 | /** |
||
30 | * Get the id. |
||
31 | * |
||
32 | * @return string Returns the id. |
||
33 | */ |
||
34 | public function getId() { |
||
37 | |||
38 | /** |
||
39 | * Set the id. |
||
40 | * |
||
41 | * @param string $id The id. |
||
42 | */ |
||
43 | public function setId($id) { |
||
47 | } |
||
48 |