@@ -52,19 +52,19 @@ discard block |
||
52 | 52 | protected function execute(InputInterface $input, OutputInterface $output) : int |
53 | 53 | { |
54 | 54 | |
55 | - if(!$output->isQuiet()) { |
|
55 | + if (!$output->isQuiet()) { |
|
56 | 56 | $output->writeln($this->getApplication()->getLongVersion()); |
57 | 57 | } |
58 | 58 | |
59 | 59 | $composerJson = realpath($input->getArgument('composer-json')); |
60 | - if(false === $composerJson) { |
|
61 | - throw new \InvalidArgumentException('file not found: [' . $input->getArgument('composer-json') . ']'); |
|
60 | + if (false === $composerJson) { |
|
61 | + throw new \InvalidArgumentException('file not found: ['.$input->getArgument('composer-json').']'); |
|
62 | 62 | } |
63 | 63 | $this->checkJsonFile($composerJson); |
64 | 64 | |
65 | 65 | $getPackageSourceFiles = new LocateComposerPackageSourceFiles(); |
66 | 66 | |
67 | - $sourcesASTs = new LocateASTFromFiles((new ParserFactory())->create(ParserFactory::PREFER_PHP7)); |
|
67 | + $sourcesASTs = new LocateASTFromFiles((new ParserFactory())->create(ParserFactory::PREFER_PHP7)); |
|
68 | 68 | |
69 | 69 | $definedVendorSymbols = (new LocateDefinedSymbolsFromASTRoots())->__invoke($sourcesASTs( |
70 | 70 | (new ComposeGenerators())->__invoke( |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $options->getSymbolWhitelist() |
89 | 89 | ); |
90 | 90 | |
91 | - $output->writeln("Symbols checked: " . count($usedSymbols)); |
|
91 | + $output->writeln("Symbols checked: ".count($usedSymbols)); |
|
92 | 92 | |
93 | 93 | if (!$unknownSymbols) { |
94 | 94 | $output->writeln("There were no unknown symbols found."); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | $guesser = new DependencyGuesser(); |
102 | 102 | foreach ($unknownSymbols as $unknownSymbol) { |
103 | 103 | $guessedDependencies = []; |
104 | - foreach($guesser($unknownSymbol) as $guessedDependency) { |
|
104 | + foreach ($guesser($unknownSymbol) as $guessedDependency) { |
|
105 | 105 | $guessedDependencies[] = $guessedDependency; |
106 | 106 | } |
107 | 107 | $table->addRow([$unknownSymbol, implode("\n", $guessedDependencies)]); |
@@ -114,17 +114,17 @@ discard block |
||
114 | 114 | private function getCheckOptions(InputInterface $input) : Options |
115 | 115 | { |
116 | 116 | $fileName = $input->getOption('config-file'); |
117 | - if(!$fileName) { |
|
117 | + if (!$fileName) { |
|
118 | 118 | return new Options(); |
119 | 119 | } |
120 | 120 | |
121 | - if(!is_readable($fileName)) { |
|
122 | - throw new \InvalidArgumentException('unable to read ' . $fileName); |
|
121 | + if (!is_readable($fileName)) { |
|
122 | + throw new \InvalidArgumentException('unable to read '.$fileName); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | $jsonData = json_decode(file_get_contents($fileName), true); |
126 | - if(false === $jsonData) { |
|
127 | - throw new \Exception('error parsing the config file: ' . json_last_error_msg()); |
|
126 | + if (false === $jsonData) { |
|
127 | + throw new \Exception('error parsing the config file: '.json_last_error_msg()); |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | return new Options($jsonData); |
@@ -138,12 +138,12 @@ discard block |
||
138 | 138 | */ |
139 | 139 | private function checkJsonFile(string $jsonFile) |
140 | 140 | { |
141 | - if(!is_readable($jsonFile)) { |
|
142 | - throw new InvalidInputFileException('cannot read ' . $jsonFile); |
|
141 | + if (!is_readable($jsonFile)) { |
|
142 | + throw new InvalidInputFileException('cannot read '.$jsonFile); |
|
143 | 143 | } |
144 | 144 | |
145 | - if(false == json_decode(file_get_contents($jsonFile))) { |
|
146 | - throw new InvalidInputFileException('error parsing ' . $jsonFile . ': ' . json_last_error_msg()); |
|
145 | + if (false == json_decode(file_get_contents($jsonFile))) { |
|
146 | + throw new InvalidInputFileException('error parsing '.$jsonFile.': '.json_last_error_msg()); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | } |