Conditions | 5 |
Paths | 16 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 30 |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function actionMake($version = null) |
||
34 | { |
||
35 | list($date, $time, $zone, $hash) = explode(' ', trim(reset($this->exec('git', ['log', '-n', 1, '--pretty=%ai %H'])))); |
||
36 | if ($hash !== $this->hash) { |
||
37 | $this->version = 'dev'; |
||
38 | } |
||
39 | $version = $version ?: $this->takeGoal('bump')->version ?: $this->version ?: 'dev'; |
||
40 | $this->getFile()->write(implode(' ', [$version, $date, $time, $zone, $hash]) . "\n"); |
||
41 | } |
||
42 | } |
||
43 |