Skip to content

Commit 9b4027d

Browse files
committed
Final classes are final
1 parent fede9c0 commit 9b4027d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Infrastructure/EventListener/Symfony/ExceptionListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* This listener receives ALL errors within the application and will always return the errors in a JSON format
1414
*/
15-
class ExceptionListener
15+
final class ExceptionListener
1616
{
1717
/**
1818
* @var string

src/Infrastructure/Ui/Web/Symfony/Controller/HealthCheckController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
77
use Symfony\Component\HttpFoundation\JsonResponse;
88

9-
class HealthCheckController
9+
final class HealthCheckController
1010
{
1111
/**
1212
* @Route("/_healthcheck")

src/Infrastructure/Ui/Web/Symfony/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
1010
use Symfony\Component\Routing\RouteCollectionBuilder;
1111

12-
class Kernel extends BaseKernel
12+
final class Kernel extends BaseKernel
1313
{
1414
use MicroKernelTrait;
1515

0 commit comments

Comments
 (0)