@@ -40,7 +40,7 @@ |
||
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - array_splice($content, $linecounter + 1, 0, [$addedLine]); |
|
| 43 | + array_splice($content, $linecounter + 1, 0, [$addedLine]); |
|
| 44 | 44 | |
| 45 | 45 | return new CommitMessage(implode("\n", $content), $this->message->getCommentCharacter()); |
| 46 | 46 | } |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | { |
| 67 | 67 | exec('git log -1 --format="%at"', $result); |
| 68 | 68 | |
| 69 | - if (! is_numeric($result[0])) { |
|
| 69 | + if (!is_numeric($result[0])) { |
|
| 70 | 70 | throw new InvalidArgumentException('No last commit-Date found'); |
| 71 | 71 | } |
| 72 | 72 | |