@@ -58,7 +58,7 @@ discard block |
||
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 |
||
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 | } |