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