| 1 | <?php |
||
| 12 | class Application extends AbstractApplication |
||
| 13 | { |
||
| 14 | |||
| 15 | public function __construct() |
||
| 16 | { |
||
| 17 | parent::__construct('ComposerRequireChecker', $this->getPackageVersion()); |
||
| 18 | |||
| 19 | $check = new CheckCommand(); |
||
| 20 | $this->add($check); |
||
| 21 | $this->setDefaultCommand($check->getName()); |
||
| 22 | } |
||
| 23 | |||
| 24 | private function getPackageVersion() : string |
||
|
|
|||
| 25 | { |
||
| 46 | } |