| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | protected function configure() { |
||
| 17 | $this->setName('release:exist'); |
||
| 18 | $this->setDescription('Check exist release directory'); |
||
| 19 | $this->setHelp('This command check exist a release directory'); |
||
| 20 | $this->addArgument('release', InputArgument::REQUIRED, 'release name'); |
||
| 21 | $this->addArgument('path', InputArgument::OPTIONAL, 'path to target directory', getcwd()); |
||
| 22 | } |
||
| 36 | } |