Completed
Push — master ( 34991a...adfc38 )
by Alexander
13s
created
src/ReflectionFileNamespace.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         $comments   = $this->namespaceNode->getAttribute('comments');
181 181
 
182 182
         if ($comments) {
183
-            $docComment = (string)$comments[0];
183
+            $docComment = (string) $comments[0];
184 184
         }
185 185
 
186 186
         return $docComment;
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
         foreach ($this->namespaceNode->stmts as $namespaceLevelNode) {
328 328
             if ($namespaceLevelNode instanceof ClassLike) {
329 329
                 $classShortName = $namespaceLevelNode->name;
330
-                $className = $namespaceName ? $namespaceName .'\\' . $classShortName : $classShortName;
330
+                $className = $namespaceName ? $namespaceName.'\\'.$classShortName : $classShortName;
331 331
 
332 332
                 $namespaceLevelNode->setAttribute('fileName', $this->fileName);
333 333
                 $classes[$className] = new ReflectionClass($className, $namespaceLevelNode);
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
         foreach ($this->namespaceNode->stmts as $namespaceLevelNode) {
352 352
             if ($namespaceLevelNode instanceof Function_) {
353 353
                 $funcShortName = $namespaceLevelNode->name;
354
-                $functionName  = $namespaceName ? $namespaceName .'\\' . $funcShortName : $funcShortName;
354
+                $functionName  = $namespaceName ? $namespaceName.'\\'.$funcShortName : $funcShortName;
355 355
 
356 356
                 $namespaceLevelNode->setAttribute('fileName', $this->fileName);
357 357
                 $functions[$funcShortName] = new ReflectionFunction($functionName, $namespaceLevelNode);
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
             foreach ($this->namespaceNode->stmts as $namespaceLevelNode) {
391 391
                 if ($namespaceLevelNode instanceof FuncCall
392 392
                     && $namespaceLevelNode->name instanceof Name
393
-                    && (string)$namespaceLevelNode->name === 'define'
393
+                    && (string) $namespaceLevelNode->name === 'define'
394 394
                 ) {
395 395
                     $expressionSolver->process($namespaceLevelNode->args[0]->value);
396 396
                     $constantName = $expressionSolver->getValue();
Please login to merge, or discard this patch.
src/ReflectionParameter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -128,11 +128,11 @@  discard block
 block discarded – undo
128 128
         if ($hasDefaultValue) {
129 129
             $defaultValue = $this->getDefaultValue();
130 130
             if (is_string($defaultValue) && strlen($defaultValue) > 15) {
131
-                $defaultValue = substr($defaultValue, 0, 15) . '...';
131
+                $defaultValue = substr($defaultValue, 0, 15).'...';
132 132
             }
133 133
             /* @see https://3v4l.org/DJOEb for behaviour changes */
134 134
             if (is_double($defaultValue) && fmod($defaultValue, 1.0) === 0.0) {
135
-                $defaultValue = (int)$defaultValue;
135
+                $defaultValue = (int) $defaultValue;
136 136
             }
137 137
 
138 138
             $defaultValue = str_replace('\\\\', '\\', var_export($defaultValue, true));
@@ -142,11 +142,11 @@  discard block
 block discarded – undo
142 142
             'Parameter #%d [ %s %s%s%s$%s%s ]',
143 143
             $this->parameterIndex,
144 144
             $isOptional ? '<optional>' : '<required>',
145
-            $parameterType ? ReflectionType::convertToDisplayType($parameterType) . ' ' : '',
145
+            $parameterType ? ReflectionType::convertToDisplayType($parameterType).' ' : '',
146 146
             $this->isVariadic() ? '...' : '',
147 147
             $this->isPassedByReference() ? '&' : '',
148 148
             $this->getName(),
149
-            ($isOptional && $hasDefaultValue) ? (' = ' . $defaultValue) : ''
149
+            ($isOptional && $hasDefaultValue) ? (' = '.$defaultValue) : ''
150 150
         );
151 151
     }
152 152
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 
197 197
                 throw new ReflectionException("Can not resolve a class name for parameter");
198 198
             }
199
-            $className   = $parameterType->toString();
199
+            $className = $parameterType->toString();
200 200
             $classOrInterfaceExists = class_exists($className, false) || interface_exists($className, false);
201 201
 
202 202
             return $classOrInterfaceExists ? new \ReflectionClass($className) : new ReflectionClass($className);
Please login to merge, or discard this patch.