1 | <?php declare(strict_types = 1); |
||
16 | class Routes extends Command |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var RouteCollector |
||
21 | */ |
||
22 | protected $collector; |
||
23 | |||
24 | /** |
||
25 | * Routes constructor. |
||
26 | * |
||
27 | * @param RouteCollector $collector |
||
28 | */ |
||
29 | 1 | public function __construct(RouteCollector $collector) |
|
34 | |||
35 | /** |
||
36 | * @inheritDoc |
||
37 | */ |
||
38 | 1 | public function description(): string |
|
42 | |||
43 | /** |
||
44 | * @inheritDoc |
||
45 | */ |
||
46 | 1 | public function handle(InputInterface $input, OutputInterface $output) |
|
68 | |||
69 | /** |
||
70 | * @inheritDoc |
||
71 | */ |
||
72 | 1 | public function signature(): string |
|
76 | |||
77 | } |