Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
fix cs-check
Browse files Browse the repository at this point in the history
  • Loading branch information
pine3ree authored Aug 25, 2018
1 parent bd91517 commit a193795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Container/ApplicationConfigInjectionDelegator.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ public function __invoke(ContainerInterface $container, string $serviceName, cal

$config = $container->get('config');

if (!empty($config['middleware_pipeline'])) {
if (! empty($config['middleware_pipeline'])) {
self::injectPipelineFromConfig($application, (array) $config);
}
if (!empty($config['routes'])) {
if (! empty($config['routes'])) {
self::injectRoutesFromConfig($application, (array) $config);
}

Expand Down

0 comments on commit a193795

Please sign in to comment.