| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function build(ContainerBuilder $container) |
||
| 29 | { |
||
| 30 | parent::build($container); |
||
| 31 | |||
| 32 | $container->addCompilerPass(new StateHandlerSessionPass()); |
||
| 33 | |||
| 34 | /** @var \Symfony\Bundle\SecurityBundle\DependencyInjection\SecurityExtension $extension */ |
||
| 35 | $extension = $container->getExtension('security'); |
||
| 36 | $extension->addSecurityListenerFactory(new SamlFactory()); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |