1 | <?php |
||
17 | class ChooseTestsController implements Controller |
||
18 | { |
||
19 | /** |
||
20 | * @var Config |
||
21 | */ |
||
22 | private $config; |
||
23 | |||
24 | /** |
||
25 | * @param Config $config |
||
26 | */ |
||
27 | public function __construct(Config $config) |
||
31 | |||
32 | /** |
||
33 | * Configures command to be executable by the controller. |
||
34 | * |
||
35 | * @param SymfonyCommand $command |
||
36 | */ |
||
37 | public function configure(SymfonyCommand $command) |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function execute(InputInterface $input, OutputInterface $output) |
||
51 | } |
||
52 |