@@ -6,16 +6,13 @@ |
||
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; |
@@ -3,7 +3,6 @@ |
||
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; |
@@ -9,16 +9,13 @@ |
||
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 | /** |
@@ -11,7 +11,6 @@ |
||
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; |
@@ -7,7 +7,6 @@ |
||
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. |
@@ -7,7 +7,6 @@ |
||
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 | /** |
@@ -9,7 +9,6 @@ |
||
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 | /** |
@@ -1,9 +1,7 @@ |
||
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. |