1 | <?php |
||
10 | class SamlSpFactoryConfiguration implements ConfigurationInterface |
||
11 | { |
||
12 | /** @var \AerialShip\SamlSPBundle\DependencyInjection\Security\Factory\SamlSpFactory */ |
||
13 | private $factory; |
||
14 | |||
15 | /** @var string */ |
||
16 | private $name; |
||
17 | |||
18 | |||
19 | |||
20 | 13 | public function __construct(SamlSpFactory $factory, $name) |
|
25 | |||
26 | /** |
||
27 | * Generates the configuration tree builder. |
||
28 | * |
||
29 | * @return \Symfony\Component\Config\Definition\Builder\TreeBuilder The tree builder |
||
30 | */ |
||
31 | 13 | public function getConfigTreeBuilder() |
|
38 | |||
39 | |||
40 | /** |
||
41 | * @param array $config |
||
42 | * @return array |
||
43 | */ |
||
44 | 13 | public function processConfiguration(array $config) |
|
53 | |||
54 | |||
55 | 9 | public function processCommonConfiguration() |
|
59 | |||
60 | 13 | public function getCommonConfiguration() |
|
78 | } |
||
79 |