| 1 | <?php |
||
| 4 | class Service { |
||
| 5 | /** @var string */ |
||
| 6 | private $key; |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @param string $key |
||
| 10 | */ |
||
| 11 | public function __construct(string $key) { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function getKey(): string { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function __toString(): string { |
||
| 28 | } |