| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function process(ContainerBuilder $container) |
||
| 20 | { |
||
| 21 | if (!$container->has('security.authentication.success_handler')) { |
||
| 22 | return; |
||
| 23 | } |
||
| 24 | |||
| 25 | $definition = $container->findDefinition('security.authentication.success_handler'); |
||
| 26 | $definition->setClass(DefaultAuthenticationSuccessHandler::class); |
||
| 27 | } |
||
| 28 | } |
||
| 29 |