| 1 | <?php |
||
| 15 | class DeployTestBranchCommand extends Command |
||
| 16 | { |
||
| 17 | const NAME = 'app:watch'; |
||
| 18 | |||
| 19 | /** @var LoggerInterface */ |
||
| 20 | private $logger; |
||
| 21 | |||
| 22 | /** @var array */ |
||
| 23 | private $configArray; |
||
| 24 | |||
| 25 | /** @var EventDispatcherInterface */ |
||
| 26 | private $dispatcher; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @throws LogicException |
||
| 30 | */ |
||
| 31 | public function __construct(array $configArray, LoggerInterface $logger, EventDispatcherInterface $dispatcher) |
||
| 38 | 1 | ||
| 39 | 1 | protected function configure() : void |
|
| 45 | |||
| 46 | 1 | protected function execute(InputInterface $input, OutputInterface $output) : void |
|
| 54 | } |
||
| 55 |