Completed
Push — master ( 3b5440...721fdb )
by Thomas
02:49
created
src/Discovery/FindByNamespace.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
                     }
59 59
                     if (T_CLASS === $tokens[$index][0]) {
60 60
                         $index += 2; // Skip class keyword and whitespace
61
-                        $this->data[] = $namespace . '\\' . $tokens[$index][1];
61
+                        $this->data[] = $namespace.'\\'.$tokens[$index][1];
62 62
                     }
63 63
                 }
64 64
             }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     protected function filterData($needle)
69 69
     {
70
-        return array_values(array_filter($this->data, function ($var) use ($needle) {
70
+        return array_values(array_filter($this->data, function($var) use ($needle) {
71 71
             if (strpos($var, $needle) !== false) {
72 72
                 return true;
73 73
             }
Please login to merge, or discard this patch.