[FramworkBundle] Added config framework.catch_all_throwables: true

This commit is contained in:
Nyholm
2022-06-16 23:09:00 +02:00
parent 9a7f5bcebb
commit 21b6a3695b
10 changed files with 130 additions and 0 deletions
@@ -0,0 +1,11 @@
<?php
namespace App;
use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
class Kernel extends BaseKernel
{
use MicroKernelTrait;
}