@@ -11,6 +11,6 @@ |
||
11 | 11 | { |
12 | 12 | public function __invoke(ContainerInterface $container): ShowContainer |
13 | 13 | { |
14 | - return new ShowContainer((array)$container->get('config')); |
|
14 | + return new ShowContainer((array) $container->get('config')); |
|
15 | 15 | } |
16 | 16 | } |
@@ -11,6 +11,6 @@ |
||
11 | 11 | { |
12 | 12 | public function __invoke(ContainerInterface $container): SetDevelopmentMode |
13 | 13 | { |
14 | - return new SetDevelopmentMode((array)$container->get('config')); |
|
14 | + return new SetDevelopmentMode((array) $container->get('config')); |
|
15 | 15 | } |
16 | 16 | } |
@@ -11,6 +11,6 @@ |
||
11 | 11 | { |
12 | 12 | public function __invoke(ContainerInterface $container): ClearConfigCache |
13 | 13 | { |
14 | - return new ClearConfigCache((array)$container->get('config')); |
|
14 | + return new ClearConfigCache((array) $container->get('config')); |
|
15 | 15 | } |
16 | 16 | } |
@@ -28,12 +28,12 @@ |
||
28 | 28 | protected function execute(InputInterface $input, OutputInterface $output) |
29 | 29 | { |
30 | 30 | foreach (['config_cache_path', 'cli_config_cache_path'] as $key) { |
31 | - if (! isset($this->config[$key])) { |
|
31 | + if (!isset($this->config[$key])) { |
|
32 | 32 | $output->writeln("<comment>No configuration cache path found</comment>"); |
33 | 33 | continue; |
34 | 34 | } |
35 | 35 | |
36 | - if (! file_exists($this->config[$key])) { |
|
36 | + if (!file_exists($this->config[$key])) { |
|
37 | 37 | $output->writeln(sprintf( |
38 | 38 | "<error>Configured config cache file '%s' not found</error>", |
39 | 39 | $this->config[$key] |
@@ -101,7 +101,7 @@ |
||
101 | 101 | |
102 | 102 | throw new \InvalidArgumentException(sprintf( |
103 | 103 | 'Invalid option %s given, dissable option value should be one of: %s, %s', |
104 | - (string)$getOption, |
|
104 | + (string) $getOption, |
|
105 | 105 | implode(',', self::TRUE_OPTIONS), |
106 | 106 | implode(',', self::FALSE_OPTIONS) |
107 | 107 | )); |