@@ -53,16 +53,16 @@ |
||
53 | 53 | protected function execute(InputInterface $input, OutputInterface $output) |
54 | 54 | { |
55 | 55 | $filePath = $input->getOption('file') ?: php_ini_loaded_file(); |
56 | - if (! is_file($filePath)) { |
|
56 | + if (!is_file($filePath)) { |
|
57 | 57 | $output->writeln('<error>The specified php.ini file does not exist</error>'); |
58 | 58 | return -1; |
59 | - } elseif (! is_writable($filePath)) { |
|
59 | + } elseif (!is_writable($filePath)) { |
|
60 | 60 | $output->writeln('<error>You do not have permission to write to the php.ini file</error>'); |
61 | 61 | return -1; |
62 | - } elseif (! ($configKey = $input->getArgument('configKey'))) { |
|
62 | + } elseif (!($configKey = $input->getArgument('configKey'))) { |
|
63 | 63 | $output->writeln('<error>No configKey set</error>'); |
64 | 64 | return -1; |
65 | - } elseif (! ($configValue = $input->getArgument('configValue'))) { |
|
65 | + } elseif (!($configValue = $input->getArgument('configValue'))) { |
|
66 | 66 | $output->writeln('<error>No configValue set</error>'); |
67 | 67 | return -1; |
68 | 68 | } |