From 5df98bcefb144fc2f44736b9db7620501a86e445 Mon Sep 17 00:00:00 2001 From: Falk Hermann Date: Thu, 9 Mar 2023 10:29:46 +0100 Subject: [PATCH] PHPCS fixes Signed-off-by: Falk Hermann --- src/ContainerResolver.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ContainerResolver.php b/src/ContainerResolver.php index 8378a16..f97c2da 100644 --- a/src/ContainerResolver.php +++ b/src/ContainerResolver.php @@ -15,14 +15,14 @@ use Symfony\Component\Console\Input\InputInterface; use Webmozart\Assert\Assert; -use const E_USER_DEPRECATED; - use function class_exists; use function file_exists; use function sprintf; use function str_contains; use function trigger_error; +use const E_USER_DEPRECATED; + /** * @internal */ @@ -112,7 +112,7 @@ private function resolveMvcContainer(string $path): ContainerInterface /* @deprecated MVC Application is not bootstrapped */ trigger_error('Running laminas-cli in MVC Environment without bootstrapping ' . 'the MVC Application is deprecated. ' - .'@see https://github.com/laminas/laminas-cli/issues/106', E_USER_DEPRECATED); + . '@see https://github.com/laminas/laminas-cli/issues/106', E_USER_DEPRECATED); $servicesConfig = $appConfig['service_manager'] ?? []; Assert::isMap($servicesConfig);