Completed
Pull Request — master (#100)
by Greg
03:20
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/Parser/DefaultsWithDescriptions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public function __construct($values = [], $defaultDefault = null)
33 33
     {
34 34
         $this->values = $values;
35
-        $this->hasDefault = array_filter($this->values, function ($value) {
35
+        $this->hasDefault = array_filter($this->values, function($value) {
36 36
             return isset($value);
37 37
         });
38 38
         $this->descriptions = [];
Please login to merge, or discard this patch.
src/AnnotatedCommandFactory.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
         // can never be commands.
248 248
         $commandMethodNames = array_filter(
249 249
             get_class_methods($classNameOrInstance) ?: [],
250
-            function ($m) {
250
+            function($m) {
251 251
                 return !preg_match('#^_#', $m);
252 252
             }
253 253
         );
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
                 if (!static::isCommandOrHookMethod($commandInfo, $this->getIncludeAllPublicMethods())) {
259 259
                     $commandInfo->invalidate();
260 260
                 }
261
-                $commandInfoList[$commandMethodName] =  $commandInfo;
261
+                $commandInfoList[$commandMethodName] = $commandInfo;
262 262
             }
263 263
         }
264 264
 
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
         return $this->createSelectedCommandsFromClassInfo(
280 280
             $commandInfoList,
281 281
             $commandFileInstance,
282
-            function ($commandInfo) use ($includeAllPublicMethods) {
282
+            function($commandInfo) use ($includeAllPublicMethods) {
283 283
                 return static::isCommandMethod($commandInfo, $includeAllPublicMethods);
284 284
             }
285 285
         );
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     {
290 290
         $commandInfoList = $this->filterCommandInfoList($commandInfoList, $commandSelector);
291 291
         return array_map(
292
-            function ($commandInfo) use ($commandFileInstance) {
292
+            function($commandInfo) use ($commandFileInstance) {
293 293
                 return $this->createCommand($commandInfo, $commandFileInstance);
294 294
             },
295 295
             $commandInfoList
Please login to merge, or discard this patch.
src/Hooks/Dispatchers/ReplaceCommandHookDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function hasReplaceCommandHook()
22 22
     {
23
-        return (bool) count($this->getReplaceCommandHooks());
23
+        return (bool)count($this->getReplaceCommandHooks());
24 24
     }
25 25
 
26 26
     /**
Please login to merge, or discard this patch.
src/Parser/CommandInfo.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     public function replaceRawAnnotations($annotationData)
229 229
     {
230
-        $this->otherAnnotations = new AnnotationData((array) $annotationData);
230
+        $this->otherAnnotations = new AnnotationData((array)$annotationData);
231 231
         return $this;
232 232
     }
233 233
 
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
         // Convert to an array and merge if there are multiple
337 337
         // instances of the same annotation defined.
338 338
         if (isset($this->otherAnnotations[$name])) {
339
-            $content = array_merge((array) $this->otherAnnotations[$name], (array)$content);
339
+            $content = array_merge((array)$this->otherAnnotations[$name], (array)$content);
340 340
         }
341 341
         $this->otherAnnotations[$name] = $content;
342 342
     }
@@ -693,8 +693,8 @@  discard block
 block discarded – undo
693 693
      */
694 694
     protected function convertName($camel)
695 695
     {
696
-        $splitter="-";
697
-        $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
696
+        $splitter = "-";
697
+        $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
698 698
         $camel = preg_replace("/$splitter/", ':', $camel, 1);
699 699
         return strtolower($camel);
700 700
     }
Please login to merge, or discard this patch.