Completed
Push — master ( 27ec94...80d1a0 )
by Greg
02:14
created
src/Hooks/HookManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@
 block discarded – undo
255 255
     {
256 256
         $names = array_merge(
257 257
             (array)$names,
258
-            ($annotationData == null) ? [] : array_map(function ($item) {
258
+            ($annotationData == null) ? [] : array_map(function($item) {
259 259
                 return "@$item";
260 260
             }, $annotationData->keys())
261 261
         );
Please login to merge, or discard this patch.
src/CommandFileDiscovery.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      */
248 248
     protected function getSearchDepth()
249 249
     {
250
-        return $this->searchDepth <= 0 ? '== 0' : '<= ' . $this->searchDepth;
250
+        return $this->searchDepth <= 0 ? '== 0' : '<= '.$this->searchDepth;
251 251
     }
252 252
 
253 253
     /**
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
         return $this->joinParts(
342 342
             '\\',
343 343
             $namespaceParts,
344
-            function ($item) {
344
+            function($item) {
345 345
                 return !is_numeric($item) && !empty($item);
346 346
             }
347 347
         );
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
         $path = $this->joinParts(
361 361
             '/',
362 362
             $pathParts,
363
-            function ($item) {
363
+            function($item) {
364 364
                 return !empty($item);
365 365
             }
366 366
         );
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
     protected function joinParts($delimiter, $parts, $filterFunction)
378 378
     {
379 379
         $parts = array_map(
380
-            function ($item) use ($delimiter) {
380
+            function($item) use ($delimiter) {
381 381
                 return rtrim($item, $delimiter);
382 382
             },
383 383
             $parts
Please login to merge, or discard this patch.
src/Cache/CacheWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function get($key)
36 36
     {
37
-        return (array) $this->dataStore->get($key);
37
+        return (array)$this->dataStore->get($key);
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
src/AnnotatedCommandFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
         // can never be commands.
245 245
         $commandMethodNames = array_filter(
246 246
             get_class_methods($classNameOrInstance) ?: [],
247
-            function ($m) {
247
+            function($m) {
248 248
                 return !preg_match('#^_#', $m);
249 249
             }
250 250
         );
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
         foreach ($commandMethodNames as $commandMethodName) {
253 253
             if (!array_key_exists($commandMethodName, $cachedCommandInfoList)) {
254 254
                 $commandInfo = CommandInfo::create($classNameOrInstance, $commandMethodName);
255
-                $commandInfoList[$commandInfo->getMethodName()] =  $commandInfo;
255
+                $commandInfoList[$commandInfo->getMethodName()] = $commandInfo;
256 256
             }
257 257
         }
258 258
 
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
         return $this->createSelectedCommandsFromClassInfo(
274 274
             $commandInfoList,
275 275
             $commandFileInstance,
276
-            function ($commandInfo) use ($includeAllPublicMethods) {
276
+            function($commandInfo) use ($includeAllPublicMethods) {
277 277
                 return static::isCommandMethod($commandInfo, $includeAllPublicMethods);
278 278
             }
279 279
         );
Please login to merge, or discard this patch.
src/Parser/CommandInfo.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 
172 172
         $this->name = $info_array['name'];
173 173
         $this->methodName = $info_array['method_name'];
174
-        $this->otherAnnotations = new AnnotationData((array) $info_array['annotations']);
174
+        $this->otherAnnotations = new AnnotationData((array)$info_array['annotations']);
175 175
         $this->arguments = new DefaultsWithDescriptions();
176 176
         $this->options = new DefaultsWithDescriptions();
177 177
         $this->aliases = $info_array['aliases'];
@@ -716,8 +716,8 @@  discard block
 block discarded – undo
716 716
      */
717 717
     protected function convertName($camel)
718 718
     {
719
-        $splitter="-";
720
-        $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
719
+        $splitter = "-";
720
+        $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
721 721
         $camel = preg_replace("/$splitter/", ':', $camel, 1);
722 722
         return strtolower($camel);
723 723
     }
Please login to merge, or discard this patch.