Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
40 | 3 | protected function configure(): void |
|
41 | { |
||
42 | 3 | parent::configure(); |
|
43 | 3 | $this->addArgument(Hooks::ARG_MESSAGE_FILE, InputArgument::REQUIRED, 'File containing the commit log message'); |
|
44 | 3 | $this->addArgument(Hooks::ARG_MODE, InputArgument::OPTIONAL, 'Current commit mode'); |
|
45 | 3 | $this->addArgument(Hooks::ARG_HASH, InputArgument::OPTIONAL, 'Given commit hash'); |
|
46 | } |
||
48 |