src/PHPDeps/Commands/CheckCommand.php 1 location
|
@@ 34-42 (lines=9) @@
|
| 31 |
|
/** @var InputHelper */ |
| 32 |
|
private $inputHelper; |
| 33 |
|
|
| 34 |
|
public function __construct(ModulesHelper $modulesHelper, InputHelper $inputHelper, ModuleReader $modulesReader, GraphWriter $graphWriter) |
| 35 |
|
{ |
| 36 |
|
parent::__construct(); |
| 37 |
|
|
| 38 |
|
$this->modulesReader = $modulesReader; |
| 39 |
|
$this->graphWriter = $graphWriter; |
| 40 |
|
$this->modulesHelper = $modulesHelper; |
| 41 |
|
$this->inputHelper = $inputHelper; |
| 42 |
|
} |
| 43 |
|
|
| 44 |
|
protected function configure() |
| 45 |
|
{ |
src/PHPDeps/Commands/DependCommand.php 1 location
|
@@ 33-40 (lines=8) @@
|
| 30 |
|
/** @var InputHelper */ |
| 31 |
|
private $inputHelper; |
| 32 |
|
|
| 33 |
|
public function __construct(ModulesHelper $modulesHelper, InputHelper $inputHelper, ModuleReader $modulesReader) |
| 34 |
|
{ |
| 35 |
|
parent::__construct(); |
| 36 |
|
|
| 37 |
|
$this->modulesReader = $modulesReader; |
| 38 |
|
$this->modulesHelper = $modulesHelper; |
| 39 |
|
$this->inputHelper = $inputHelper; |
| 40 |
|
} |
| 41 |
|
|
| 42 |
|
protected function configure() |
| 43 |
|
{ |
src/PHPDeps/Commands/DependenciesCommand.php 1 location
|
@@ 30-37 (lines=8) @@
|
| 27 |
|
/** @var InputHelper */ |
| 28 |
|
private $inputHelper; |
| 29 |
|
|
| 30 |
|
public function __construct(ModulesHelper $modulesHelper, InputHelper $inputHelper, ModuleReader $modulesReader) |
| 31 |
|
{ |
| 32 |
|
parent::__construct(); |
| 33 |
|
|
| 34 |
|
$this->modulesReader = $modulesReader; |
| 35 |
|
$this->modulesHelper = $modulesHelper; |
| 36 |
|
$this->inputHelper = $inputHelper; |
| 37 |
|
} |
| 38 |
|
|
| 39 |
|
protected function configure() |
| 40 |
|
{ |