1 | <?php declare(strict_types = 1); |
||
22 | class Service implements ResolveClassInterface |
||
23 | { |
||
24 | /** @var mixed */ |
||
25 | protected $value; |
||
26 | |||
27 | /** |
||
28 | * Inject constructor. |
||
29 | * |
||
30 | * @param $value |
||
31 | */ |
||
32 | public function __construct($value) |
||
36 | |||
37 | /** {@inheritdoc} */ |
||
38 | public function resolveClass( |
||
46 | } |
||
47 |