| 1 | <?php |
||
| 13 | class StartCommand extends Command |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var ProjectManager |
||
| 17 | */ |
||
| 18 | private $projectManager; |
||
| 19 | /** |
||
| 20 | * @var Project |
||
| 21 | */ |
||
| 22 | private $project; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param ProjectManager $projectManager |
||
| 26 | * @param Project $project |
||
| 27 | */ |
||
| 28 | public function __construct(ProjectManager $projectManager, Project $project) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | protected function configure() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 65 | } |
||
| 66 |