@@ -39,7 +39,7 @@ |
||
39 | 39 | * @param string $fullDescription |
40 | 40 | * @param string $reference |
41 | 41 | * |
42 | - * @return null |
|
42 | + * @return string |
|
43 | 43 | */ |
44 | 44 | public function __construct($summary = null, $author = null, $fullDescription = null, $reference = null) |
45 | 45 | { |
@@ -58,7 +58,7 @@ |
||
58 | 58 | |
59 | 59 | $change = new Change(); |
60 | 60 | foreach ($gitLog as $line) { |
61 | - if(strpos($line, 'commit') === 0) { |
|
61 | + if (strpos($line, 'commit') === 0) { |
|
62 | 62 | if (null !== $change->reference) { |
63 | 63 | $change->fullDescription = trim($change->fullDescription); |
64 | 64 | $changes[] = $change; |