Completed
Pull Request — master (#58)
by Alexander
02:18
created
src/ReflectionClass.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 namespace Go\ParserReflection;
12 12
 
13 13
 use Go\ParserReflection\Traits\ReflectionClassLikeTrait;
14
-use PhpParser\Node\Name;
15 14
 use PhpParser\Node\Stmt\ClassLike;
16 15
 use ReflectionObject as InternalReflectionObject;
17 16
 
Please login to merge, or discard this patch.
src/Traits/ReflectionFunctionLikeTrait.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Go\ParserReflection\NodeVisitor\GeneratorDetector;
15 15
 use Go\ParserReflection\NodeVisitor\StaticVariablesCollector;
16
-use Go\ParserReflection\ReflectionFileNamespace;
17 16
 use Go\ParserReflection\ReflectionParameter;
18 17
 use Go\ParserReflection\ReflectionType;
19 18
 use PhpParser\Node\Expr\Closure;
Please login to merge, or discard this patch.
src/ReflectionParameter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
     {
159 159
         // Enable 7.1 nullable types support
160 160
         if ($this->parameterNode->type instanceof NullableType) {
161
-           return true;
161
+            return true;
162 162
         }
163 163
 
164 164
         $hasDefaultNull = $this->isDefaultValueAvailable() && $this->getDefaultValue() === null;
Please login to merge, or discard this patch.