1 | <?php |
||
18 | class BuildSandbox implements CommandInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var TestRunner |
||
22 | */ |
||
23 | private $testRunner; |
||
24 | |||
25 | /** |
||
26 | * @var EventDispatcher |
||
27 | */ |
||
28 | private $eventDispatcher; |
||
29 | |||
30 | 1 | public function __construct(TestRunner $testRunner, EventDispatcher $eventDispatcher) |
|
35 | |||
36 | public function configure(Command $command) |
||
43 | |||
44 | 1 | public function execute(InputInterface $input, OutputInterface $output) |
|
60 | } |
||
61 |