1 | <?php |
||
29 | final class ServiceContainerExtension implements Extension |
||
30 | { |
||
31 | /** |
||
32 | * @var callable<ContainerBuilder, array>:LoaderInterface |
||
33 | */ |
||
34 | private $loaderCallable; |
||
35 | |||
36 | public function __construct() |
||
48 | |||
49 | /** |
||
50 | * @api |
||
51 | * |
||
52 | * @param callable<ContainerBuilder, array>:LoaderInterface $loaderCallable |
||
53 | */ |
||
54 | public function setLoaderCallable(callable $loaderCallable) |
||
58 | |||
59 | /** |
||
60 | * @internal |
||
61 | * |
||
62 | * {@inheritdoc} |
||
63 | */ |
||
64 | public function getConfigKey() |
||
68 | |||
69 | /** |
||
70 | * @internal |
||
71 | * |
||
72 | * {@inheritdoc} |
||
73 | */ |
||
74 | public function initialize(ExtensionManager $extensionManager) |
||
78 | |||
79 | /** |
||
80 | * @internal |
||
81 | * |
||
82 | * {@inheritdoc} |
||
83 | */ |
||
84 | public function configure(ArrayNodeDefinition $builder) |
||
93 | |||
94 | /** |
||
95 | * @internal |
||
96 | * |
||
97 | * {@inheritdoc} |
||
98 | */ |
||
99 | public function load(ContainerBuilder $container, array $config) |
||
110 | |||
111 | /** |
||
112 | * @internal |
||
113 | * |
||
114 | * {@inheritdoc} |
||
115 | */ |
||
116 | public function process(ContainerBuilder $container) |
||
120 | } |
||
121 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.