Passed
Push — master ( 3c2796...b074c7 )
by Satoshi
02:28
created
src/Commands/VerifyDependencyCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             ];
68 68
 
69 69
             $otherComponent = [
70
-                'define' => array_merge(['\\'], array_map(function (string $className) {
70
+                'define' => array_merge(['\\'], array_map(function(string $className) {
71 71
                     return '!' . $className;
72 72
                 }, $classesInPhpDoc)),
73 73
             ];
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
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     protected function createDependencyGraph(array $paths, array $excludePaths = []): DependencyGraph
56 56
     {
57
-        $convertRealpathClosure = function ($path) {
57
+        $convertRealpathClosure = function($path) {
58 58
             $realpath = realpath($path);
59 59
             if (!is_file($realpath) && !is_dir($realpath)) {
60 60
                 throw new InvalidCommandArgumentException("path was not found: {$realpath}");
Please login to merge, or discard this patch.
src/DependencyDumper/DependencyResolver.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\DependencyDumper;
5 5
 
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
     {
222 222
         $functionName = $node->name->name;
223 223
         if (isset($node->namespacedName)) {
224
-            $functionName = (string)$node->namespacedName;
224
+            $functionName = (string) $node->namespacedName;
225 225
         }
226 226
         $functionNameName = new \PhpParser\Node\Name($functionName);
227 227
         if ($this->broker->hasCustomFunction($functionNameName, null)) {
Please login to merge, or discard this patch.
src/DependencyGraph.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         // Breadth first search
56 56
         do {
57 57
             $target = array_shift($queue);
58
-            $visited[$target->getId()]= $target;
58
+            $visited[$target->getId()] = $target;
59 59
 
60 60
             foreach ($target->getVerticesEdgeTo()->getMap() as $id => $vertexTo) {
61 61
                 if (!isset($visited[$id])) {
Please login to merge, or discard this patch.
src/Commands/CycleDetectCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
                 ->addHeader('class')
33 33
                 ->addHeader('');
34 34
             foreach ($cycle as $index => $class) {
35
-                $haveNextClass = (bool)($index < (count($cycle) - 1));
35
+                $haveNextClass = (bool) ($index < (count($cycle) - 1));
36 36
                 $table->addRow([$class, $haveNextClass ? '->' : '']);
37 37
             }
38 38
 
Please login to merge, or discard this patch.
src/Detector/RuleViolationDetector/DependencyRuleFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
         foreach ($ruleDefinitions as $ruleName => $ruleDefinition) {
19 19
             $this->verifyDefinition($ruleDefinition);
20 20
             if (is_int($ruleName)) {
21
-                $ruleName = (string)$ruleName;
21
+                $ruleName = (string) $ruleName;
22 22
             }
23 23
             $rules[] = $this->createDependencyRule($ruleName, $ruleDefinition);
24 24
         }
Please login to merge, or discard this patch.
conf/rule_sample.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
             'dependee' => ['!Facade']
25 25
         ],
26 26
         'Facade' => [
27
-            'define' => ['\App','\Artisan','\Auth','\Blade','\Broadcast','\Bus','\Cache','\Config','\Cookie','\Crypt','\DB','\Event','\File','\Gate','\Hash','\Lang','\Log','\Mail','\Notification','\Password','\Queue','\Redirect','\Request','\Response','\Route','\Schema','\Session','\Storage','\URL','\Validator','\View']
27
+            'define' => ['\App', '\Artisan', '\Auth', '\Blade', '\Broadcast', '\Bus', '\Cache', '\Config', '\Cookie', '\Crypt', '\DB', '\Event', '\File', '\Gate', '\Hash', '\Lang', '\Log', '\Mail', '\Notification', '\Password', '\Queue', '\Redirect', '\Request', '\Response', '\Route', '\Schema', '\Session', '\Storage', '\URL', '\Validator', '\View']
28 28
         ]
29 29
     ]
30 30
 ];
Please login to merge, or discard this patch.
conf/this_repository_rule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,12 +13,12 @@
 block discarded – undo
13 13
             'description' => ['Analyze repository, and build DependencyGraph'],
14 14
             'depender' => ['commands']
15 15
         ],
16
-        'unknown class reflection' => [             // I will remove this component............
16
+        'unknown class reflection' => [// I will remove this component............
17 17
             'define' => [$unknownClassReflection],
18 18
             'description' => 'temporary component........',
19 19
             'depender' => ['dependency_dumper', 'graph_builder']
20 20
         ],
21
-        'graph_builder' => [                        // I'm thinking about this component position.
21
+        'graph_builder' => [// I'm thinking about this component position.
22 22
             'define' => ['\DependencyAnalyzer\DependencyGraph\DependencyGraphBuilder'],
23 23
             'description' => ['Build DependencyGraph'],
24 24
             'depender' => ['dependency_dumper']
Please login to merge, or discard this patch.