1 | <?php |
||
23 | final class NullObjectDependency implements DependencyInterface |
||
24 | { |
||
25 | /** @var class-string */ |
||
26 | private $interface; |
||
27 | |||
28 | /** |
||
29 | * @param class-string $interface |
||
|
|||
30 | */ |
||
31 | public function __construct(string $interface) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function __toString(): string |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function inject(Container $container) |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | * |
||
55 | * @return void |
||
56 | */ |
||
57 | public function register(array &$container, Bind $bind) |
||
61 | |||
62 | /** |
||
63 | * {@inheritdoc} |
||
64 | */ |
||
65 | public function setScope($scope) |
||
68 | |||
69 | public function toNull(string $scriptDir): Dependency |
||
77 | } |
||
78 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.