From e5e280fcaf67c4074e17a02991f42fe546014a16 Mon Sep 17 00:00:00 2001 From: Nattfarinn Date: Wed, 29 Nov 2023 11:06:51 +0100 Subject: [PATCH] fix: Coding Standards --- .../Symfony/ErrorHandler/Php82HideDeprecationsErrorHandler.php | 2 +- .../ErrorHandler/Php82HideDeprecationsErrorHandlerTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandler.php b/src/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandler.php index a6e0d78458..a346434efa 100644 --- a/src/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandler.php +++ b/src/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandler.php @@ -6,8 +6,8 @@ */ namespace Ibexa\Core\MVC\Symfony\ErrorHandler; -use Symfony\Component\Runtime\Internal\BasicErrorHandler; use const PHP_VERSION_ID; +use Symfony\Component\Runtime\Internal\BasicErrorHandler; final class Php82HideDeprecationsErrorHandler extends BasicErrorHandler { diff --git a/tests/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandlerTest.php b/tests/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandlerTest.php index 0014624a18..fae3145978 100644 --- a/tests/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandlerTest.php +++ b/tests/lib/MVC/Symfony/ErrorHandler/Php82HideDeprecationsErrorHandlerTest.php @@ -7,8 +7,8 @@ namespace Ibexa\Tests\Core\MVC\Symfony\ErrorHandler; use Ibexa\Core\MVC\Symfony\ErrorHandler\Php82HideDeprecationsErrorHandler; -use PHPUnit\Framework\TestCase; use const PHP_VERSION_ID; +use PHPUnit\Framework\TestCase; final class Php82HideDeprecationsErrorHandlerTest extends TestCase {