1 | <?php |
||
21 | final class EndpointSource implements Component |
||
22 | { |
||
23 | /** |
||
24 | * @var Component[] |
||
25 | */ |
||
26 | private $subComponents = []; |
||
27 | |||
28 | /** |
||
29 | * EndpointSource constructor. |
||
30 | */ |
||
31 | public function __construct() |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function name(): string |
||
45 | |||
46 | /** |
||
47 | * {@inheritdoc} |
||
48 | */ |
||
49 | public function load(array $configs, ContainerBuilder $container) |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function getNodeDefinition(NodeDefinition $node) |
||
69 | |||
70 | /** |
||
71 | * {@inheritdoc} |
||
72 | */ |
||
73 | public function prepend(ContainerBuilder $container, array $config): array |
||
85 | } |
||
86 |