@@ -2,7 +2,6 @@ |
||
2 | 2 | namespace Consolidation\AnnotatedCommand\Parser; |
3 | 3 | |
4 | 4 | use Symfony\Component\Console\Input\InputOption; |
5 | -use Consolidation\AnnotatedCommand\Parser\Internal\CommandDocBlockParser; |
|
6 | 5 | use Consolidation\AnnotatedCommand\Parser\Internal\CommandDocBlockParserFactory; |
7 | 6 | use Consolidation\AnnotatedCommand\AnnotationData; |
8 | 7 |
@@ -2,19 +2,12 @@ |
||
2 | 2 | namespace Consolidation\AnnotatedCommand\Hooks; |
3 | 3 | |
4 | 4 | use Symfony\Component\Console\Command\Command; |
5 | -use Symfony\Component\Console\Input\InputInterface; |
|
6 | -use Symfony\Component\Console\Output\OutputInterface; |
|
7 | - |
|
8 | 5 | use Symfony\Component\Console\ConsoleEvents; |
9 | 6 | use Symfony\Component\Console\Event\ConsoleCommandEvent; |
10 | 7 | use Symfony\Component\EventDispatcher\EventSubscriberInterface; |
11 | 8 | use Symfony\Component\EventDispatcher\EventDispatcherInterface; |
12 | 9 | use Symfony\Component\EventDispatcher\EventDispatcher; |
13 | - |
|
14 | -use Consolidation\AnnotatedCommand\ExitCodeInterface; |
|
15 | 10 | use Consolidation\AnnotatedCommand\OutputDataInterface; |
16 | -use Consolidation\AnnotatedCommand\AnnotationData; |
|
17 | -use Consolidation\AnnotatedCommand\CommandData; |
|
18 | 11 | use Consolidation\AnnotatedCommand\CommandError; |
19 | 12 | use Consolidation\AnnotatedCommand\Hooks\Dispatchers\CommandEventHookDispatcher; |
20 | 13 |