1 | <?php |
||
17 | class Reference |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $id; |
||
23 | |||
24 | /** |
||
25 | * Constructor. |
||
26 | * |
||
27 | * @param string $id |
||
28 | */ |
||
29 | public function __construct($id) |
||
33 | |||
34 | /** |
||
35 | * Get service id. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getId() |
||
43 | |||
44 | /** |
||
45 | * Cast reference to string representation. |
||
46 | * |
||
47 | * @return string |
||
48 | */ |
||
49 | public function __toString() |
||
53 | } |
||
54 |