1 | <?php |
||
11 | final class Instance implements DependencyInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var mixed |
||
15 | */ |
||
16 | public $value; |
||
17 | |||
18 | 79 | public function __construct($value) |
|
22 | |||
23 | public function __toString() |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | 79 | public function register(array &$container, Bind $bind) |
|
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | 30 | public function inject(Container $container) |
|
58 | |||
59 | /** |
||
60 | * {@inheritdoc} |
||
61 | * |
||
62 | * @codeCoverageIgnore |
||
63 | */ |
||
64 | public function setScope($scope) |
||
67 | } |
||
68 |