Completed
Pull Request — master (#36)
by Emanuele
03:48
created
src/Analyzer/AstTraverser.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 
6 6
 namespace PHPSA\Analyzer;
7 7
 
8
-use PhpParser\NodeVisitor;
9 8
 use PHPSA\Context;
10 9
 
11 10
 class AstTraverser extends \PhpParser\NodeTraverser
Please login to merge, or discard this patch.
src/Compiler/Statement/ForeachSt.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 
8 8
 use PHPSA\CompiledExpression;
9 9
 use PHPSA\Context;
10
-use PHPSA\Definition\ClassMethod;
11 10
 use PHPSA\Compiler\Expression;
12 11
 
13 12
 class ForeachSt extends AbstractCompiler
Please login to merge, or discard this patch.
src/Definition/ClassDefinition.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 namespace PHPSA\Definition;
7 7
 
8 8
 use PHPSA\CompiledExpression;
9
-use PHPSA\Compiler\Parameter;
10 9
 use PHPSA\Context;
11 10
 use PhpParser\Node;
12 11
 use PHPSA\Variable;
Please login to merge, or discard this patch.
src/Definition/RuntimeClassDefinition.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -5,12 +5,8 @@
 block discarded – undo
5 5
 
6 6
 namespace PHPSA\Definition;
7 7
 
8
-use PHPSA\CompiledExpression;
9
-use PHPSA\Compiler\Parameter;
10 8
 use PHPSA\Context;
11
-use PhpParser\Node;
12 9
 use PHPSA\Exception\NotImplementedException;
13
-use PHPSA\Variable;
14 10
 use ReflectionClass;
15 11
 
16 12
 class RuntimeClassDefinition extends ClassDefinition
Please login to merge, or discard this patch.