Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function build(ContainerBuilder $container) |
||
13 | { |
||
14 | parent::build($container); |
||
15 | |||
16 | // register the factories which set up the custom auth providers |
||
17 | $extension = $container->getExtension('security'); |
||
18 | $extension->addSecurityListenerFactory(new IPFactory()); |
||
19 | $extension->addSecurityListenerFactory(new RemoteUserFactory()); |
||
20 | } |
||
21 | } |
||
22 |