Passed
Push — master ( 50f068...bac002 )
by Satoshi
02:14
created
conf/this_repository_rule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
15 15
             'description' => ['Analyze repository, and build DependencyGraph'],
16 16
             'depender' => ['commands']
17 17
         ],
18
-        'unknown class reflection' => [             // I will remove this component............
18
+        'unknown class reflection' => [// I will remove this component............
19 19
             'define' => [$unknownClassReflection],
20 20
             'description' => 'temporary component........',
21 21
             'depender' => ['dependency_dumper', 'graph_builder']
22 22
         ],
23
-        'graph_builder' => [                        // I'm thinking about this component position.
23
+        'graph_builder' => [// I'm thinking about this component position.
24 24
             'define' => [$graphBuilderComponent],
25 25
             'description' => ['Build DependencyGraph'],
26 26
             'depender' => ['dependency_dumper']
Please login to merge, or discard this patch.
src/DependencyDumper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
         $excludeFiles = $this->getAllFilesRecursive($excludePaths);
83 83
         $files = $this->getAllFilesRecursive($paths);
84 84
 
85
-        $this->notifyDumpStart(array_reduce($files, function (int $max, string $file) use ($excludeFiles) {
85
+        $this->notifyDumpStart(array_reduce($files, function(int $max, string $file) use ($excludeFiles) {
86 86
             if (!in_array($file, $excludeFiles)) {
87 87
                 $max++;
88 88
             }
Please login to merge, or discard this patch.
src/Commands/AnalyzeDependencyCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace DependencyAnalyzer\Commands;
5 5
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     protected function createDependencyGraph(OutputInterface $output, array $paths, array $excludePaths = []): DependencyGraph
62 62
     {
63
-        $convertRealpathClosure = function ($path) {
63
+        $convertRealpathClosure = function($path) {
64 64
             $realpath = realpath($path);
65 65
             if (!is_file($realpath) && !is_dir($realpath)) {
66 66
                 throw new InvalidCommandArgumentException("path was not found: {$realpath}");
Please login to merge, or discard this patch.