Skip to content

Commit

Permalink
update ignored exception
Browse files Browse the repository at this point in the history
  • Loading branch information
qdequippe committed Nov 21, 2024
1 parent 712ec88 commit 952dd5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/packages/sentry.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symfony\Component\HttpFoundation\Exception\BadRequestException;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
Expand All @@ -17,7 +17,7 @@
'options' => [
'ignore_exceptions' => [
NotFoundHttpException::class,
BadRequestException::class,
BadRequestHttpException::class,
MethodNotAllowedHttpException::class,
],
]
Expand Down

0 comments on commit 952dd5d

Please sign in to comment.