| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | 10 | public function __construct() |
|
| 11 | { |
||
| 12 | 10 | parent::__construct( |
|
| 13 | 10 | 'ComposerRequireChecker', |
|
| 14 | 10 | Versions::getVersion('maglnet/composer-require-checker') |
|
| 15 | ); |
||
| 16 | |||
| 17 | 10 | $check = new CheckCommand(); |
|
| 18 | 10 | $this->add($check); |
|
| 19 | 10 | $this->setDefaultCommand($check->getName()); |
|
|
|
|||
| 20 | 10 | } |
|
| 22 |