Completed
Push — master ( 7510c8...82c7bd )
by Kirill
08:19
created
src/Compiler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 use Railt\Io\Readable;
13 13
 use Railt\Parser\Ast\RuleInterface;
14
-use Railt\Parser\Exception\UnexpectedTokenException;
15 14
 use Railt\Parser\Exception\UnrecognizedTokenException;
16 15
 use Railt\Reflection\Contracts\Definition;
17 16
 use Railt\Reflection\Contracts\Dictionary;
Please login to merge, or discard this patch.
src/Compiler/Ast/Invocation/DirectiveArgumentNode.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -10,12 +10,7 @@
 block discarded – undo
10 10
 namespace Railt\SDL\Compiler\Ast\Invocation;
11 11
 
12 12
 use Railt\Parser\Ast\Rule;
13
-use Railt\Reflection\Contracts\Invocation\TypeInvocation;
14
-use Railt\Reflection\Invocation\Dependent\ArgumentInvocation;
15
-use Railt\Reflection\Invocation\DirectiveInvocation;
16 13
 use Railt\SDL\Compiler\Ast\Value\BaseValueNode;
17
-use Railt\SDL\Compiler\Ast\Value\ValueNode;
18
-use Railt\SDL\Compiler\Builder\Value\BaseValue;
19 14
 
20 15
 /**
21 16
  * Class DirectiveArgumentNode
Please login to merge, or discard this patch.
src/Compiler/Ast/Value/StringValueNode.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -9,10 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace Railt\SDL\Compiler\Ast\Value;
11 11
 
12
-use Railt\Reflection\Contracts\Document;
13
-use Railt\SDL\Compiler\Builder\Value\StringValue;
14
-use Railt\SDL\Compiler\Builder\Value\ValueInterface;
15
-
16 12
 /**
17 13
  * Class StringValueNode
18 14
  */
Please login to merge, or discard this patch.
src/Compiler/Ast/Value/ValueNode.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -9,9 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace Railt\SDL\Compiler\Ast\Value;
11 11
 
12
-use Railt\Reflection\Contracts\Document;
13
-use Railt\SDL\Compiler\Builder\Value\ValueInterface;
14
-
15 12
 /**
16 13
  * Class ValueNode
17 14
  */
Please login to merge, or discard this patch.
src/Compiler/Builder/Definition/EnumBuilder.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Railt\Parser\Ast\RuleInterface;
13 13
 use Railt\Reflection\Contracts\Definition;
14 14
 use Railt\Reflection\Definition\EnumDefinition;
15
-use Railt\SDL\Compiler\Ast\Definition\DirectiveDefinitionNode;
16 15
 use Railt\SDL\Compiler\Ast\Definition\EnumDefinitionNode;
17 16
 use Railt\SDL\Compiler\Builder\Builder;
18 17
 
Please login to merge, or discard this patch.
src/Compiler/Builder/Dependent/EnumValueBuilder.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -11,14 +11,10 @@
 block discarded – undo
11 11
 
12 12
 use Railt\Parser\Ast\RuleInterface;
13 13
 use Railt\Reflection\Contracts\Definition;
14
-use Railt\Reflection\Contracts\Type as TypeInterface;
15 14
 use Railt\Reflection\Definition\Dependent\EnumValueDefinition;
16 15
 use Railt\Reflection\Definition\EnumDefinition;
17
-use Railt\Reflection\Type;
18 16
 use Railt\SDL\Compiler\Ast\Dependent\EnumValueDefinitionNode;
19
-use Railt\SDL\Compiler\Ast\TypeHintNode;
20 17
 use Railt\SDL\Compiler\Builder\Builder;
21
-use Railt\SDL\Compiler\Builder\Virtual\TypeHint;
22 18
 
23 19
 /**
24 20
  * Class EnumValueBuilder
Please login to merge, or discard this patch.