1 | <?php |
||
10 | class Reference |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $identifier; |
||
16 | |||
17 | public function __construct(string $identifier) |
||
21 | |||
22 | /** |
||
23 | * @codeCoverageIgnore |
||
24 | */ |
||
25 | public function identifier(): string |
||
29 | |||
30 | /** |
||
31 | * @codeCoverageIgnore |
||
32 | */ |
||
33 | public function __toString(): string |
||
37 | } |
||
38 |