Completed
Push — master ( b0d047...e9f17a )
by Adelar
03:30
created
src/OfxMovement.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
     }
18 18
 
19 19
     public function getDescription(){
20
-    	return $this->description;
20
+        return $this->description;
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         $this->description = $xml->MEMO;
17 17
     }
18 18
 
19
-    public function getDescription(){
19
+    public function getDescription() {
20 20
     	return $this->description;
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
src/Ofx.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,12 +21,12 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     public function getMovements(){
24
-    	return $this->movements;
24
+        return $this->movements;
25 25
     }
26 26
 
27 27
     private function exportMovements(SimpleXMLElement $xml){
28
-    	foreach ($xml as $value) {
29
-    		$this->movements[] = new OfxMovement($value);
30
-    	}
28
+        foreach ($xml as $value) {
29
+            $this->movements[] = new OfxMovement($value);
30
+        }
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@
 block discarded – undo
20 20
         $this->exportMovements($xml->BANKMSGSRSV1->STMTTRNRS->STMTRS->BANKTRANLIST->STMTTRN);
21 21
     }
22 22
 
23
-    public function getMovements(){
23
+    public function getMovements() {
24 24
     	return $this->movements;
25 25
     }
26 26
 
27
-    private function exportMovements(SimpleXMLElement $xml){
27
+    private function exportMovements(SimpleXMLElement $xml) {
28 28
     	foreach ($xml as $value) {
29 29
     		$this->movements[] = new OfxMovement($value);
30 30
     	}
Please login to merge, or discard this patch.