Completed
Push — master ( f87d1c...560885 )
by Greg
02:43
created
src/CommandFileDiscovery.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      */
247 247
     protected function getSearchDepth()
248 248
     {
249
-        return $this->searchDepth <= 0 ? '== 0' : '< ' . $this->searchDepth;
249
+        return $this->searchDepth <= 0 ? '== 0' : '< '.$this->searchDepth;
250 250
     }
251 251
 
252 252
     /**
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
         return $this->joinParts(
341 341
             '\\',
342 342
             $namespaceParts,
343
-            function ($item) {
343
+            function($item) {
344 344
                 return !is_numeric($item) && !empty($item);
345 345
             }
346 346
         );
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
         return $this->joinParts(
360 360
             '/',
361 361
             $pathParts,
362
-            function ($item) {
362
+            function($item) {
363 363
                 return !empty($item);
364 364
             }
365 365
         );
Please login to merge, or discard this patch.