Completed
Pull Request — master (#127)
by Greg
01:49
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/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/CommandData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
         if ($value === true) {
137 137
             // Check if the --no-* option exists. Note that none of the other
138 138
             // alteration apply in the $value == true case, so we can exit early here.
139
-            $negation_key = 'no-' . $option;
139
+            $negation_key = 'no-'.$option;
140 140
             return array_key_exists($negation_key, $options) && $options[$negation_key];
141 141
         }
142 142
 
Please login to merge, or discard this patch.
src/Parser/CommandInfo.php 1 patch
Spacing   +5 added lines, -5 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
 
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
         // Convert to an array and merge if there are multiple
310 310
         // instances of the same annotation defined.
311 311
         if (isset($this->otherAnnotations[$name])) {
312
-            $content = array_merge((array) $this->otherAnnotations[$name], (array)$content);
312
+            $content = array_merge((array)$this->otherAnnotations[$name], (array)$content);
313 313
         }
314 314
         $this->otherAnnotations[$name] = $content;
315 315
     }
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
         $opts = $this->options()->getValues();
488 488
         foreach ($opts as $name => $defaultValue) {
489 489
             if ($defaultValue === true) {
490
-                $key = 'no-' . $name;
490
+                $key = 'no-'.$name;
491 491
                 if (!array_key_exists($key, $opts)) {
492 492
                     $description = "Negate --$name option.";
493 493
                     $this->options()->add($key, $description, false);
@@ -691,8 +691,8 @@  discard block
 block discarded – undo
691 691
      */
692 692
     protected function convertName($camel)
693 693
     {
694
-        $splitter="-";
695
-        $camel=preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
694
+        $splitter = "-";
695
+        $camel = preg_replace('/(?!^)[[:upper:]][[:lower:]]/', '$0', preg_replace('/(?!^)[[:upper:]]+/', $splitter.'$0', $camel));
696 696
         $camel = preg_replace("/$splitter/", ':', $camel, 1);
697 697
         return strtolower($camel);
698 698
     }
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
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         // can never be commands.
247 247
         $commandMethodNames = array_filter(
248 248
             get_class_methods($classNameOrInstance) ?: [],
249
-            function ($m) use ($classNameOrInstance) {
249
+            function($m) use ($classNameOrInstance) {
250 250
                 $reflectionMethod = new \ReflectionMethod($classNameOrInstance, $m);
251 251
                 return !$reflectionMethod->isStatic() && !preg_match('#^_#', $m);
252 252
             }
@@ -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.