Completed
Push — master ( 53cbf4...c4dd08 )
by Matthias
04:10
created
src/ComposerRequireChecker/FileLocator/LocateComposerPackageSourceFiles.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,14 +29,14 @@
 block discarded – undo
29 29
     {
30 30
         $flattened = array_reduce(
31 31
             $sourceDirs,
32
-            function (array $sourceDirs, $sourceDir) {
33
-                return array_merge($sourceDirs, (array)$sourceDir);
32
+            function(array $sourceDirs, $sourceDir) {
33
+                return array_merge($sourceDirs, (array) $sourceDir);
34 34
             },
35 35
             []
36 36
         );
37 37
         return array_values(array_map(
38
-            function (string $sourceDir) use ($packageDir) {
39
-                return $packageDir . '/' . ltrim($sourceDir, '/');
38
+            function(string $sourceDir) use ($packageDir) {
39
+                return $packageDir.'/'.ltrim($sourceDir, '/');
40 40
             },
41 41
             $flattened
42 42
         ));
Please login to merge, or discard this patch.
NodeVisitor/DefinedSymbolCollectorFunctionalTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
     private function traverseStringAST(string $phpSource) : array
99 99
     {
100
-        return $this->traverser->traverse($this->parser->parse('<?php ' . $phpSource));
100
+        return $this->traverser->traverse($this->parser->parse('<?php '.$phpSource));
101 101
     }
102 102
 
103 103
     private function traverseClassAST(string $className) : array
Please login to merge, or discard this patch.
test/ComposerRequireCheckerTest/DependencyGuesser/DependencyGuesserTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
     public function testGuessExtJson()
22 22
     {
23
-        if(!extension_loaded('json')) {
23
+        if (!extension_loaded('json')) {
24 24
             $this->markTestSkipped('extension json is not available');
25 25
         }
26 26
         $result = $this->guesser->__invoke('json_decode');
Please login to merge, or discard this patch.
test/ComposerRequireCheckerTest/Cli/OptionsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
         $optionsFromFile = new Options(
41 41
             json_decode(file_get_contents(
42
-                __DIR__ . '/../../../data/config.dist.json'
42
+                __DIR__.'/../../../data/config.dist.json'
43 43
             ), true)
44 44
         );
45 45
 
Please login to merge, or discard this patch.
src/ComposerRequireChecker/Cli/CheckCommand.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -52,16 +52,16 @@  discard block
 block discarded – undo
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
-        $composerJson = getcwd() . '/' . $input->getArgument('composer-json');
59
+        $composerJson = getcwd().'/'.$input->getArgument('composer-json');
60 60
         $this->checkJsonFile($composerJson);
61 61
 
62 62
         $getPackageSourceFiles = new LocateComposerPackageSourceFiles();
63 63
 
64
-        $sourcesASTs  = new LocateASTFromFiles((new ParserFactory())->create(ParserFactory::PREFER_PHP7));
64
+        $sourcesASTs = new LocateASTFromFiles((new ParserFactory())->create(ParserFactory::PREFER_PHP7));
65 65
 
66 66
         $definedVendorSymbols = (new LocateDefinedSymbolsFromASTRoots())->__invoke($sourcesASTs(
67 67
             (new ComposeGenerators())->__invoke(
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         $guesser = new DependencyGuesser();
97 97
         foreach ($unknownSymbols as $unknownSymbol) {
98 98
             $guessedDependencies = [];
99
-            foreach($guesser($unknownSymbol) as $guessedDependency) {
99
+            foreach ($guesser($unknownSymbol) as $guessedDependency) {
100 100
                 $guessedDependencies[] = $guessedDependency;
101 101
             }
102 102
             $table->addRow([$unknownSymbol, implode("\n", $guessedDependencies)]);
@@ -109,17 +109,17 @@  discard block
 block discarded – undo
109 109
     private function getCheckOptions(InputInterface $input) : Options
110 110
     {
111 111
         $fileName = $input->getOption('config-file');
112
-        if(!$fileName) {
112
+        if (!$fileName) {
113 113
             return new Options();
114 114
         }
115 115
 
116
-        if(!is_readable($fileName)) {
117
-            throw new \InvalidArgumentException('unable to read ' . $fileName);
116
+        if (!is_readable($fileName)) {
117
+            throw new \InvalidArgumentException('unable to read '.$fileName);
118 118
         }
119 119
 
120 120
         $jsonData = json_decode(file_get_contents($fileName), true);
121
-        if(false === $jsonData) {
122
-            throw new \Exception('error parsing the config file: ' . json_last_error_msg());
121
+        if (false === $jsonData) {
122
+            throw new \Exception('error parsing the config file: '.json_last_error_msg());
123 123
         }
124 124
 
125 125
         return new Options($jsonData);
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
      */
134 134
     private function checkJsonFile(string $jsonFile)
135 135
     {
136
-        if(!is_readable($jsonFile)) {
137
-            throw new InvalidInputFileException('cannot read ' . $jsonFile);
136
+        if (!is_readable($jsonFile)) {
137
+            throw new InvalidInputFileException('cannot read '.$jsonFile);
138 138
         }
139 139
 
140
-        if(false == json_decode(file_get_contents($jsonFile))) {
141
-            throw new InvalidInputFileException('error parsing ' . $jsonFile . ': ' . json_last_error_msg());
140
+        if (false == json_decode(file_get_contents($jsonFile))) {
141
+            throw new InvalidInputFileException('error parsing '.$jsonFile.': '.json_last_error_msg());
142 142
         }
143 143
 
144 144
     }
Please login to merge, or discard this patch.