1 | <?php |
||
11 | final class Inject implements AnnotationInterface |
||
12 | { |
||
13 | /** @var string */ |
||
14 | public $value; |
||
15 | |||
16 | /** @var bool */ |
||
17 | public $invokable = false; |
||
18 | |||
19 | /** |
||
20 | * Get the value. |
||
21 | * |
||
22 | * @param ServiceLocatorInterface|null $sm |
||
23 | * @return object |
||
24 | * |
||
25 | * @throws CannotGetValue |
||
26 | */ |
||
27 | 3 | public function getValue(ServiceLocatorInterface $sm) |
|
41 | } |
||
42 |