Completed
Pull Request — master (#95)
by
unknown
05:12
created
lib/Fhp/Model/StatementOfAccount/Statement.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,9 @@
 block discarded – undo
73 73
 	public function getSignedStartBalance()
74 74
 	{
75 75
 		$s = 1;
76
-		if ($this->getCreditDebit() == self::CD_DEBIT) $s = -1;
76
+		if ($this->getCreditDebit() == self::CD_DEBIT) {
77
+		    $s = -1;
78
+		}
77 79
 		return $s * $this->getStartBalance();
78 80
 
79 81
 	}
Please login to merge, or discard this patch.
lib/Fhp/Parser/MT940.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,9 @@
 block discarded – undo
147 147
 				}
148 148
 			}
149 149
 			$statement['transactions'] = $transactions;
150
-			if (count($transactions) > 0) $result[] = $statement;
150
+			if (count($transactions) > 0) {
151
+			    $result[] = $statement;
152
+			}
151 153
 		}
152 154
 
153 155
 		return $result;
Please login to merge, or discard this patch.