Passed
Pull Request — master (#5)
by Gerard van
06:43
created
src/Zicht/Tool/Application.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -6,16 +6,13 @@
 block discarded – undo
6 6
 namespace Zicht\Tool;
7 7
 
8 8
 use Symfony\Component\Console\Application as BaseApplication;
9
-use Symfony\Component\Console\Command\Command;
10 9
 use Symfony\Component\Console\Input\ArrayInput;
11 10
 use Symfony\Component\Console\Input\InputArgument;
12 11
 use Symfony\Component\Console\Input\InputOption;
13 12
 use Symfony\Component\Console\Input\InputInterface;
14 13
 use Symfony\Component\Console\Input\InputDefinition;
15 14
 use Symfony\Component\Console\Output\OutputInterface;
16
-use Symfony\Component\Yaml\Yaml;
17 15
 use Zicht\Version\Version;
18
-
19 16
 use Zicht\Tool\Command as Cmd;
20 17
 use Zicht\Tool\Configuration\ConfigurationLoader;
21 18
 use Zicht\Tool\Container\Container;
Please login to merge, or discard this patch.
src/Zicht/Tool/Command/Descriptor/TextDescriptor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Symfony\Component\Console\Application;
5 5
 use Symfony\Component\Console\Command\Command;
6
-use Symfony\Component\Console\Input\InputArgument;
7 6
 use Symfony\Component\Console\Input\InputDefinition;
8 7
 use Symfony\Component\Console\Input\InputOption;
9 8
 use Symfony\Component\Console\Descriptor\TextDescriptor as BaseDescriptor;
Please login to merge, or discard this patch.
src/Zicht/Tool/Container/Container.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -9,16 +9,13 @@
 block discarded – undo
9 9
 use Symfony\Component\Console\Command\Command;
10 10
 use Symfony\Component\Console\Output\NullOutput;
11 11
 use Symfony\Component\Console\Output\OutputInterface;
12
-
13 12
 use Zicht\Tool\Debug;
14 13
 use Zicht\Tool\PropertyPath\PropertyAccessor;
15 14
 use Zicht\Tool\PluginInterface;
16 15
 use Zicht\Tool\Script\Compiler as ScriptCompiler;
17
-use Zicht\Tool\Script;
18 16
 use Zicht\Tool\Util;
19 17
 use Zicht\Tool\Script\Parser\Expression as ExpressionParser;
20 18
 use Zicht\Tool\Script\Tokenizer\Expression as ExpressionTokenizer;
21
-
22 19
 use UnexpectedValueException;
23 20
 
24 21
 /**
Please login to merge, or discard this patch.
src/Zicht/Tool/Container/ContainerBuilder.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use Zicht\Tool\Script\Node\Task\OptNode;
12 12
 use Zicht\Tool\Script\Compiler;
13 13
 use Zicht\Tool\Script\Node\Task\SetNode;
14
-use Zicht\Tool\Script\Parser;
15 14
 use Zicht\Tool\Debug;
16 15
 use Zicht\Tool\Script\Parser\Expression as ExpressionParser;
17 16
 use Zicht\Tool\Script\Tokenizer\Expression as ExpressionTokenizer;
Please login to merge, or discard this patch.
src/Zicht/Tool/Container/Executor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 namespace Zicht\Tool\Container;
8 8
 
9 9
 use Symfony\Component\Process\Process;
10
-use Symfony\Component\Process\ProcessBuilder;
11 10
 
12 11
 /**
13 12
  * Runs the commands in the shell.
Please login to merge, or discard this patch.
src/Zicht/Tool/Container/Task.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 namespace Zicht\Tool\Container;
8 8
 
9 9
 use Zicht\Tool\Script\Buffer;
10
-use Zicht\Tool\Script\Node\Node;
11 10
 use Zicht\Tool\Util;
12 11
 
13 12
 /**
Please login to merge, or discard this patch.
src/Zicht/Tool/ErrorHandler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Symfony\Component\Console\Helper\DialogHelper;
10 10
 use Symfony\Component\Console\Output\OutputInterface;
11 11
 use Symfony\Component\Console\Input\InputInterface;
12
-
13 12
 use Zicht\Tool\Container\ExecutionAbortedException;
14 13
 
15 14
 /**
Please login to merge, or discard this patch.
res/features/bootstrap/FeatureContext.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use Behat\Behat\Context\Context;
4
-use Behat\Behat\Context\SnippetAcceptingContext;
5 4
 use Behat\Gherkin\Node\PyStringNode;
6
-use Behat\Gherkin\Node\TableNode;
7 5
 
8 6
 /**
9 7
  * Defines application features from the specific context.
Please login to merge, or discard this patch.