1 | <?php declare(strict_types=1); |
||
9 | class SimpleValueProvider implements ValueProvider |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $value; |
||
15 | |||
16 | /** |
||
17 | * @param string $value |
||
18 | */ |
||
19 | public function __construct(string $value) |
||
23 | |||
24 | /** |
||
25 | * @return string |
||
26 | */ |
||
27 | public function getValue(): string |
||
31 | } |
||
32 |