Completed
Pull Request — master (#130)
by Abdul Malik
24:41
created
src/Instrument/PathResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
         $isRelative = !$pathScheme && ($path[0] !== '/') && ($path[1] !== ':');
52 52
         if ($isRelative) {
53
-            $path = getcwd() . DIRECTORY_SEPARATOR . $path;
53
+            $path = getcwd().DIRECTORY_SEPARATOR.$path;
54 54
         }
55 55
 
56 56
         // resolve path parts (single dot, double dot and double delimiters)
Please login to merge, or discard this patch.
src/ValueResolver/NodeExpressionResolver.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -504,7 +504,7 @@
 block discarded – undo
504 504
 
505 505
             if (method_exists($this->context, 'getDeclaringClass')) {
506 506
                 return $this->context->getDeclaringClass()
507
-                                     ->getParentClass()
507
+                                        ->getParentClass()
508 508
                     ;
509 509
             }
510 510
         }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     protected function resolveScalarMagicConstMethod(): string
159 159
     {
160 160
         if ($this->context instanceof ReflectionMethod) {
161
-            $fullName = $this->context->getDeclaringClass()->name . '::' . $this->context->getShortName();
161
+            $fullName = $this->context->getDeclaringClass()->name.'::'.$this->context->getShortName();
162 162
 
163 163
             return $fullName;
164 164
         }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             $fileNamespace = new ReflectionFileNamespace($fileName, $namespaceName);
250 250
             if ($fileNamespace->hasConstant($constantName)) {
251 251
                 $constantValue = $fileNamespace->getConstant($constantName);
252
-                $constantName  = $fileNamespace->getName() . '\\' . $constantName;
252
+                $constantName  = $fileNamespace->getName().'\\'.$constantName;
253 253
                 $isResolved    = true;
254 254
             }
255 255
         }
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 
265 265
             if ($this->isParameter) {
266 266
                 if (isset($namespaceName)) {
267
-                    return $namespaceName . '\\' . $this->constantName;
267
+                    return $namespaceName.'\\'.$this->constantName;
268 268
                 }
269 269
 
270 270
                 return $this->constantName;
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
                 $reason = 'Unable';
284 284
                 if ($classToReflect instanceof Expr) {
285 285
                     $methodName = $this->getDispatchMethodFor($classToReflect);
286
-                    $reason     = "Method " . __CLASS__ . "::{$methodName}() not found trying";
286
+                    $reason     = "Method ".__CLASS__."::{$methodName}() not found trying";
287 287
                 }
288 288
                 throw new ReflectionException("$reason to resolve class constant.");
289 289
             }
@@ -301,13 +301,13 @@  discard block
 block discarded – undo
301 301
 
302 302
         if ($node->class instanceof Name && $node->class->isSpecialClassName() && $this->isParameter) {
303 303
             $this->isConstant = true;
304
-            $this->constantName = $node->class . '::' . $constantName;
304
+            $this->constantName = $node->class.'::'.$constantName;
305 305
 
306 306
             return $this->constantName;
307 307
         }
308 308
 
309 309
         $this->isConstant   = true;
310
-        $this->constantName = $classToReflect . '::' . $constantName;
310
+        $this->constantName = $classToReflect.'::'.$constantName;
311 311
 
312 312
         return $refClass->getConstant($constantName);
313 313
     }
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
             return $printer->prettyPrintExpr($node);
397 397
         }
398 398
 
399
-        return $this->resolve($node->left) . $this->resolve($node->right);
399
+        return $this->resolve($node->left).$this->resolve($node->right);
400 400
     }
401 401
 
402 402
     protected function resolveExprTernary(Expr\Ternary $node)
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
     {
482 482
         $nodeType = $node->getType();
483 483
 
484
-        return 'resolve' . str_replace('_', '', $nodeType);
484
+        return 'resolve'.str_replace('_', '', $nodeType);
485 485
     }
486 486
 
487 487
     /**
Please login to merge, or discard this patch.
src/ReflectionFunction.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -117,14 +117,14 @@
 block discarded – undo
117 117
 
118 118
         return sprintf(
119 119
             $reflectionFormat,
120
-            $this->getDocComment() ? $this->getDocComment() . "\n" : '',
120
+            $this->getDocComment() ? $this->getDocComment()."\n" : '',
121 121
             $this->getName(),
122 122
             $this->getFileName(),
123 123
             $this->getStartLine(),
124 124
             $this->getEndLine(),
125 125
             count($this->getParameters()),
126
-            array_reduce($this->getParameters(), static function ($str, ReflectionParameter $param) {
127
-                return $str . "\n    " . $param;
126
+            array_reduce($this->getParameters(), static function($str, ReflectionParameter $param) {
127
+                return $str."\n    ".$param;
128 128
             }, '')
129 129
         );
130 130
     }
Please login to merge, or discard this patch.
src/ReflectionClassConstant.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
     /**
120 120
      * @inheritDoc
121 121
      */
122
-    public function getDocComment(): string|false
122
+    public function getDocComment(): string | false
123 123
     {
124 124
         $docBlock = $this->classConstantNode->getDocComment();
125 125
 
Please login to merge, or discard this patch.
src/ReflectionType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,13 +88,13 @@
 block discarded – undo
88 88
         if ($type instanceof ReflectionNamedType) {
89 89
             $displayType = $type->getName();
90 90
         } else {
91
-            $displayType = (string)$type;
91
+            $displayType = (string) $type;
92 92
         }
93 93
 
94 94
         $displayType = ltrim($displayType, '\\');
95 95
 
96
-        if ($type->allowsNull() && ! $type instanceof ReflectionUnionType) {
97
-            $displayType = '?' . $displayType;
96
+        if ($type->allowsNull() && !$type instanceof ReflectionUnionType) {
97
+            $displayType = '?'.$displayType;
98 98
         }
99 99
 
100 100
         return $displayType;
Please login to merge, or discard this patch.
src/ReflectionMethod.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,12 +108,12 @@
 block discarded – undo
108 108
         $paramString = '';
109 109
         $indentation = str_repeat(' ', 4);
110 110
         foreach ($methodParameters as $methodParameter) {
111
-            $paramString .= "\n{$indentation}" . $methodParameter;
111
+            $paramString .= "\n{$indentation}".$methodParameter;
112 112
         }
113 113
 
114 114
         return sprintf(
115 115
             "%sMethod [ <user%s%s>%s%s%s %s method %s ] {\n  @@ %s %d - %d{$paramFormat}{$returnFormat}\n}\n",
116
-            $this->getDocComment() ? $this->getDocComment() . "\n" : '',
116
+            $this->getDocComment() ? $this->getDocComment()."\n" : '',
117 117
             $prototype ? ", overwrites {$prototypeClass}, prototype {$prototypeClass}" : '',
118 118
             $this->isConstructor() ? ', ctor' : '',
119 119
             $this->isFinal() ? ' final' : '',
Please login to merge, or discard this patch.
src/Traits/ReflectionFunctionLikeTrait.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         return parent::getClosureThis();
72 72
     }
73 73
 
74
-    public function getDocComment(): string|false
74
+    public function getDocComment(): string | false
75 75
     {
76 76
         $docComment = $this->functionLikeNode->getDocComment();
77 77
 
@@ -88,12 +88,12 @@  discard block
 block discarded – undo
88 88
         return null;
89 89
     }
90 90
 
91
-    public function getExtensionName(): string|false
91
+    public function getExtensionName(): string | false
92 92
     {
93 93
         return false;
94 94
     }
95 95
 
96
-    public function getFileName(): string|false
96
+    public function getFileName(): string | false
97 97
     {
98 98
         return $this->functionLikeNode->getAttribute('fileName');
99 99
     }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         if ($this->functionLikeNode instanceof Function_ || $this->functionLikeNode instanceof ClassMethod) {
107 107
             $functionName = $this->functionLikeNode->name->toString();
108 108
 
109
-            return $this->namespaceName ? $this->namespaceName . '\\' . $functionName : $functionName;
109
+            return $this->namespaceName ? $this->namespaceName.'\\'.$functionName : $functionName;
110 110
         }
111 111
 
112 112
         return '';
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
             foreach ($this->functionLikeNode->getParams() as $parameterIndex => $parameterNode) {
159 159
                 $reflectionParameter = new ReflectionParameter(
160 160
                     $this->getName(),
161
-                    (string)$parameterNode->var->name,
161
+                    (string) $parameterNode->var->name,
162 162
                     $parameterNode,
163 163
                     $parameterIndex,
164 164
                     $this
Please login to merge, or discard this patch.
src/Traits/ReflectionClassLikeTrait.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -147,19 +147,19 @@  discard block
 block discarded – undo
147 147
             }
148 148
         }
149 149
 
150
-        $buildString = static function (array $items, $indentLevel = 4) {
150
+        $buildString = static function(array $items, $indentLevel = 4) {
151 151
             if (!count($items)) {
152 152
                 return '';
153 153
             }
154
-            $indent = "\n" . str_repeat(' ', $indentLevel);
154
+            $indent = "\n".str_repeat(' ', $indentLevel);
155 155
 
156
-            return $indent . implode($indent, explode("\n", implode("\n", $items)));
156
+            return $indent.implode($indent, explode("\n", implode("\n", $items)));
157 157
         };
158 158
 
159
-        $buildConstants = static function (array $items, $indentLevel = 4) {
159
+        $buildConstants = static function(array $items, $indentLevel = 4) {
160 160
             $str = '';
161 161
             foreach ($items as $name => $value) {
162
-                $str .= "\n" . str_repeat(' ', $indentLevel);
162
+                $str .= "\n".str_repeat(' ', $indentLevel);
163 163
                 $str .= sprintf(
164 164
                     'Constant [ %s %s ] { %s }',
165 165
                     gettype($value),
@@ -184,8 +184,8 @@  discard block
 block discarded – undo
184 184
             ($isObject ? 'Object of class' : 'Class'),
185 185
             $modifiers,
186 186
             $this->getName(),
187
-            false !== $parentClass ? (' extends ' . $parentClass->getName()) : '',
188
-            $interfaceNames ? (' implements ' . implode(', ', $interfaceNames)) : '',
187
+            false !== $parentClass ? (' extends '.$parentClass->getName()) : '',
188
+            $interfaceNames ? (' implements '.implode(', ', $interfaceNames)) : '',
189 189
             $this->getFileName(),
190 190
             $this->getStartLine(),
191 191
             $this->getEndLine(),
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     {
227 227
         if (!isset($this->constants)) {
228 228
             $this->constants = $this->recursiveCollect(
229
-                function (array &$result, \ReflectionClass $instance) {
229
+                function(array &$result, \ReflectionClass $instance) {
230 230
                     $result += $instance->getConstants();
231 231
                 }
232 232
             );
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     /**
291 291
      * {@inheritDoc}
292 292
      */
293
-    public function getDocComment(): string|false
293
+    public function getDocComment(): string | false
294 294
     {
295 295
         $docComment = $this->classLikeNode->getDocComment();
296 296
 
@@ -307,12 +307,12 @@  discard block
 block discarded – undo
307 307
         return null;
308 308
     }
309 309
 
310
-    public function getExtensionName(): string|false
310
+    public function getExtensionName(): string | false
311 311
     {
312 312
         return false;
313 313
     }
314 314
 
315
-    public function getFileName(): string|false
315
+    public function getFileName(): string | false
316 316
     {
317 317
         return $this->classLikeNode->getAttribute('fileName');
318 318
     }
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
     {
333 333
         if (!isset($this->interfaceClasses)) {
334 334
             $this->interfaceClasses = $this->recursiveCollect(
335
-                function (array &$result, \ReflectionClass $instance) {
335
+                function(array &$result, \ReflectionClass $instance) {
336 336
                     if ($instance->isInterface()) {
337 337
                         $result[$instance->name] = $instance;
338 338
                     }
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
         if (!isset($this->methods)) {
373 373
             $directMethods = ReflectionMethod::collectFromClassNode($this->classLikeNode, $this);
374 374
             $parentMethods = $this->recursiveCollect(
375
-                function (array &$result, \ReflectionClass $instance, $isParent) {
375
+                function(array &$result, \ReflectionClass $instance, $isParent) {
376 376
                     $reflectionMethods = [];
377 377
                     foreach ($instance->getMethods() as $reflectionMethod) {
378 378
                         if (!$isParent || !$reflectionMethod->isPrivate()) {
@@ -437,9 +437,9 @@  discard block
 block discarded – undo
437 437
      */
438 438
     public function getName(): string
439 439
     {
440
-        $namespaceName = $this->namespaceName ? $this->namespaceName . '\\' : '';
440
+        $namespaceName = $this->namespaceName ? $this->namespaceName.'\\' : '';
441 441
 
442
-        return $namespaceName . $this->getShortName();
442
+        return $namespaceName.$this->getShortName();
443 443
     }
444 444
 
445 445
     /**
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
     /**
454 454
      * {@inheritDoc}
455 455
      */
456
-    public function getParentClass(): \ReflectionClass|false
456
+    public function getParentClass(): \ReflectionClass | false
457 457
     {
458 458
         if (!isset($this->parentClass)) {
459 459
             static $extendsField = 'extends';
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
         if (!isset($this->properties)) {
485 485
             $directProperties = ReflectionProperty::collectFromClassNode($this->classLikeNode, $this->getName());
486 486
             $parentProperties = $this->recursiveCollect(
487
-                function (array &$result, \ReflectionClass $instance, $isParent) {
487
+                function(array &$result, \ReflectionClass $instance, $isParent) {
488 488
                     $reflectionProperties = [];
489 489
                     foreach ($instance->getProperties() as $reflectionProperty) {
490 490
                         if (!$isParent || !$reflectionProperty->isPrivate()) {
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
     /**
535 535
      * @inheritDoc
536 536
      */
537
-    public function getReflectionConstant($name): \ReflectionClassConstant|false
537
+    public function getReflectionConstant($name): \ReflectionClassConstant | false
538 538
     {
539 539
         $classConstants = $this->getReflectionConstants();
540 540
         foreach ($classConstants as $classConstant) {
@@ -557,7 +557,7 @@  discard block
 block discarded – undo
557 557
                 $this->getName()
558 558
             );
559 559
             $parentClassConstants = $this->recursiveCollect(
560
-                function (array &$result, \ReflectionClass $instance, $isParent) {
560
+                function(array &$result, \ReflectionClass $instance, $isParent) {
561 561
                     $reflectionClassConstants = [];
562 562
                     foreach ($instance->getReflectionConstants() as $reflectionClassConstant) {
563 563
                         if (!$isParent || !$reflectionClassConstant->isPrivate()) {
@@ -610,7 +610,7 @@  discard block
 block discarded – undo
610 610
                         break;
611 611
                     }
612 612
                 }
613
-                $aliases[$adaptation->newName] = $traitName . '::' . $methodName;
613
+                $aliases[$adaptation->newName] = $traitName.'::'.$methodName;
614 614
             }
615 615
         }
616 616
 
Please login to merge, or discard this patch.
src/ReflectionFileNamespace.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -165,13 +165,13 @@  discard block
 block discarded – undo
165 165
      *
166 166
      * @return string|false The doc comment if it exists, otherwise "false"
167 167
      */
168
-    public function getDocComment(): string|false
168
+    public function getDocComment(): string | false
169 169
     {
170 170
         $docComment = false;
171 171
         $comments   = $this->namespaceNode->getAttribute('comments');
172 172
 
173 173
         if ($comments) {
174
-            $docComment = (string)$comments[0];
174
+            $docComment = (string) $comments[0];
175 175
         }
176 176
 
177 177
         return $docComment;
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
         foreach ($this->namespaceNode->stmts as $namespaceLevelNode) {
319 319
             if ($namespaceLevelNode instanceof ClassLike) {
320 320
                 $classShortName = $namespaceLevelNode->name->toString();
321
-                $className = $namespaceName ? $namespaceName .'\\' . $classShortName : $classShortName;
321
+                $className = $namespaceName ? $namespaceName.'\\'.$classShortName : $classShortName;
322 322
 
323 323
                 $namespaceLevelNode->setAttribute('fileName', $this->fileName);
324 324
                 $classes[$className] = new ReflectionClass($className, $namespaceLevelNode);
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
         foreach ($this->namespaceNode->stmts as $namespaceLevelNode) {
343 343
             if ($namespaceLevelNode instanceof Function_) {
344 344
                 $funcShortName = $namespaceLevelNode->name->toString();
345
-                $functionName  = $namespaceName ? $namespaceName .'\\' . $funcShortName : $funcShortName;
345
+                $functionName  = $namespaceName ? $namespaceName.'\\'.$funcShortName : $funcShortName;
346 346
 
347 347
                 $namespaceLevelNode->setAttribute('fileName', $this->fileName);
348 348
                 $functions[$funcShortName] = new ReflectionFunction($functionName, $namespaceLevelNode);
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
                 if ($namespaceLevelNode instanceof Expression
383 383
                     && $namespaceLevelNode->expr instanceof FuncCall
384 384
                     && $namespaceLevelNode->expr->name instanceof Name
385
-                    && (string)$namespaceLevelNode->expr->name === 'define'
385
+                    && (string) $namespaceLevelNode->expr->name === 'define'
386 386
                 ) {
387 387
                     $functionCallNode = $namespaceLevelNode->expr;
388 388
                     $expressionSolver->process($functionCallNode->args[0]->value);
Please login to merge, or discard this patch.