@@ -26,7 +26,7 @@ |
||
| 26 | 26 | */ |
| 27 | 27 | public static function decode($string) |
| 28 | 28 | { |
| 29 | - if (! is_string($string)) { |
|
| 29 | + if (!is_string($string)) { |
|
| 30 | 30 | throw new JsonException('Json decode parameter must be a string'); |
| 31 | 31 | } |
| 32 | 32 | |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | } catch (JsonException $exception) { |
| 29 | 29 | throw new InvalidConfigException('Unable to parse JSON config'); |
| 30 | 30 | } |
| 31 | - if (! is_array($configArray)) { |
|
| 31 | + if (!is_array($configArray)) { |
|
| 32 | 32 | throw new InvalidConfigException('Invalid JSON config'); |
| 33 | 33 | } |
| 34 | 34 | return $configArray; |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | */ |
| 46 | 46 | public function doRun(InputInterface $input, OutputInterface $output): int |
| 47 | 47 | { |
| 48 | - if (! $output->isQuiet()) { |
|
| 48 | + if (!$output->isQuiet()) { |
|
| 49 | 49 | $output->writeln(sprintf( |
| 50 | 50 | "PhpUnitGen by Paul Thébaud (version <info>%s</info>).\n", |
| 51 | 51 | $this->getVersion() |
@@ -184,12 +184,12 @@ discard block |
||
| 184 | 184 | */ |
| 185 | 185 | protected function getConfigurationFactory(string $path): AbstractConsoleConfigFactory |
| 186 | 186 | { |
| 187 | - if (! file_exists($path)) { |
|
| 187 | + if (!file_exists($path)) { |
|
| 188 | 188 | throw new InvalidConfigException(sprintf('Config file "%s" does not exists', $path)); |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | $extension = pathinfo($path, PATHINFO_EXTENSION); |
| 192 | - if (! Validator::key($extension)->validate(static::CONSOLE_CONFIG_FACTORIES)) { |
|
| 192 | + if (!Validator::key($extension)->validate(static::CONSOLE_CONFIG_FACTORIES)) { |
|
| 193 | 193 | throw new InvalidConfigException( |
| 194 | 194 | sprintf('Config file "%s" must have .yml, .json or .php extension', $path) |
| 195 | 195 | ); |
@@ -209,10 +209,10 @@ discard block |
||
| 209 | 209 | */ |
| 210 | 210 | protected function validatePathsExist(InputInterface $input): void |
| 211 | 211 | { |
| 212 | - if (! is_string($input->getArgument('source'))) { |
|
| 212 | + if (!is_string($input->getArgument('source'))) { |
|
| 213 | 213 | throw new Exception('Missing the source path'); |
| 214 | 214 | } |
| 215 | - if (! is_string($input->getArgument('target'))) { |
|
| 215 | + if (!is_string($input->getArgument('target'))) { |
|
| 216 | 216 | throw new Exception('Missing the target path'); |
| 217 | 217 | } |
| 218 | 218 | } |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | } catch (JsonException $exception) { |
| 44 | 44 | throw new AnnotationParseException('"params" annotation content is invalid (invalid JSON content)'); |
| 45 | 45 | } |
| 46 | - if (! Validator::arrayVal()->each(Validator::stringType(), Validator::intType())->validate($decoded)) { |
|
| 46 | + if (!Validator::arrayVal()->each(Validator::stringType(), Validator::intType())->validate($decoded)) { |
|
| 47 | 47 | throw new AnnotationParseException('"params" annotation content is invalid (must contains strings only)'); |
| 48 | 48 | } |
| 49 | 49 | $this->parameters = $decoded; |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | } catch (JsonException $exception) { |
| 44 | 44 | throw new AnnotationParseException('"assertion" annotation content is invalid (invalid JSON content)'); |
| 45 | 45 | } |
| 46 | - if (! is_string($decoded)) { |
|
| 46 | + if (!is_string($decoded)) { |
|
| 47 | 47 | throw new AnnotationParseException( |
| 48 | 48 | '"assertion" annotation content is invalid (expected value must be a string)' |
| 49 | 49 | ); |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | } catch (JsonException $exception) { |
| 44 | 44 | throw new AnnotationParseException('"setter" annotation content is invalid (invalid JSON content)'); |
| 45 | 45 | } |
| 46 | - if (! is_string($decoded)) { |
|
| 46 | + if (!is_string($decoded)) { |
|
| 47 | 47 | throw new AnnotationParseException( |
| 48 | 48 | '"setter" annotation content is invalid (property name must be a string)' |
| 49 | 49 | ); |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | */ |
| 59 | 59 | private function saveFunctionAnnotation(FunctionModelInterface $parent, AnnotationInterface $annotation): void |
| 60 | 60 | { |
| 61 | - if (! $parent->isGlobal() && $parent->isPublic()) { |
|
| 61 | + if (!$parent->isGlobal() && $parent->isPublic()) { |
|
| 62 | 62 | // For public or not global function, all annotation except constructor |
| 63 | 63 | if ($annotation->getType() !== AnnotationInterface::TYPE_CONSTRUCT) { |
| 64 | 64 | $annotation->setParentNode($parent); |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | } catch (JsonException $exception) { |
| 44 | 44 | throw new AnnotationParseException('"getter" annotation content is invalid (invalid JSON content)'); |
| 45 | 45 | } |
| 46 | - if (! is_string($decoded)) { |
|
| 46 | + if (!is_string($decoded)) { |
|
| 47 | 47 | throw new AnnotationParseException( |
| 48 | 48 | '"getter" annotation content is invalid (property name must be a string)' |
| 49 | 49 | ); |