Skip to content

Commit

Permalink
PHPCS fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Falk Hermann <[email protected]>
  • Loading branch information
FalkHe committed Mar 9, 2023
1 parent f5b0065 commit 5df98bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ContainerResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 5df98bc

Please sign in to comment.