Completed
Push — master ( da3d70...efcf9b )
by Noritaka
06:58
created
src/package/ReflectionIterator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     private function getClassFullNameFromFile(SplFileInfo $file)
74 74
     {
75 75
         $targets = [
76
-            realpath($this->namespaceDirectory).'/',
76
+            realpath($this->namespaceDirectory) . '/',
77 77
             '.php',
78 78
         ];
79 79
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $className = str_replace($targets, $replaceValues, realpath($file->getPathname()));
83 83
         $className = str_replace('/', "\\", $className);
84 84
 
85
-        return $this->namespace."\\".$className;
85
+        return $this->namespace . "\\" . $className;
86 86
     }
87 87
 
88 88
     /**
Please login to merge, or discard this patch.