SchulIT /
idp
| 1 | <?php |
||
| 2 | |||
| 3 | namespace App; |
||
| 4 | |||
| 5 | use App\DependencyInjection\Compiler\RemovePcntlEventSubscriberPass; |
||
| 6 | use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait; |
||
| 7 | use Symfony\Component\DependencyInjection\ContainerBuilder; |
||
| 8 | use Symfony\Component\HttpKernel\Kernel as BaseKernel; |
||
| 9 | |||
| 10 | class Kernel extends BaseKernel |
||
| 11 | { |
||
| 12 | use MicroKernelTrait; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 13 | |||
| 14 | protected function build(ContainerBuilder $container) { |
||
| 15 | $container->addCompilerPass(new RemovePcntlEventSubscriberPass()); |
||
| 16 | } |
||
| 17 | } |
||
| 18 |