|
14 | 14 | namespace phpDocumentor\Guides\Cli\Command;
|
15 | 15 |
|
16 | 16 | use Doctrine\Deprecations\Deprecation;
|
17 |
| -use Flyfinder\Path; |
18 |
| -use Flyfinder\Specification\InPath; |
19 |
| -use Flyfinder\Specification\NotSpecification; |
20 |
| -use Flyfinder\Specification\OrSpecification; |
21 |
| -use Flyfinder\Specification\SpecificationInterface; |
22 | 17 | use League\Tactician\CommandBus;
|
23 | 18 | use Monolog\Handler\ErrorLogHandler;
|
24 | 19 | use Monolog\Handler\StreamHandler;
|
25 | 20 | use Monolog\Logger;
|
26 |
| -use phpDocumentor\FileSystem\Finder\Exclude; |
27 |
| -use phpDocumentor\FileSystem\FlySystemAdapter; |
28 | 21 | use phpDocumentor\Guides\Cli\Internal\RunCommand;
|
29 | 22 | use phpDocumentor\Guides\Cli\Logger\SpyProcessor;
|
30 |
| -use phpDocumentor\Guides\Compiler\CompilerContext; |
31 |
| -use phpDocumentor\Guides\Event\PostProjectNodeCreated; |
32 |
| -use phpDocumentor\Guides\Handlers\CompileDocumentsCommand; |
33 |
| -use phpDocumentor\Guides\Handlers\ParseDirectoryCommand; |
34 |
| -use phpDocumentor\Guides\Handlers\ParseFileCommand; |
35 |
| -use phpDocumentor\Guides\Handlers\RenderCommand; |
36 |
| -use phpDocumentor\Guides\Nodes\ProjectNode; |
37 |
| -use phpDocumentor\Guides\Settings\ProjectSettings; |
38 | 23 | use phpDocumentor\Guides\Settings\SettingsManager;
|
39 | 24 | use phpDocumentor\Guides\Twig\Theme\ThemeManager;
|
40 | 25 | use Psr\Clock\ClockInterface;
|
41 | 26 | use Psr\Log\LogLevel;
|
42 |
| -use RuntimeException; |
43 | 27 | use Symfony\Component\Console\Command\Command;
|
44 |
| -use Symfony\Component\Console\Input\InputArgument; |
45 | 28 | use Symfony\Component\Console\Input\InputInterface;
|
46 | 29 | use Symfony\Component\Console\Input\InputOption;
|
47 | 30 | use Symfony\Component\Console\Output\ConsoleOutputInterface;
|
48 | 31 | use Symfony\Component\Console\Output\OutputInterface;
|
49 | 32 | use Symfony\Component\EventDispatcher\EventDispatcher;
|
50 | 33 |
|
51 |
| -use function array_map; |
52 | 34 | use function array_pop;
|
53 |
| -use function array_reduce; |
54 |
| -use function array_shift; |
55 |
| -use function assert; |
56 | 35 | use function count;
|
57 | 36 | use function implode;
|
58 | 37 | use function is_countable;
|
59 |
| -use function is_dir; |
60 |
| -use function method_exists; |
61 |
| -use function pathinfo; |
62 |
| -use function sprintf; |
63 | 38 | use function strtoupper;
|
64 | 39 |
|
65 | 40 | final class Run extends Command
|
|
0 commit comments