Completed
Push — master ( e3be67...2f9429 )
by Adelar
02:35
created
src/OfxParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         libxml_use_internal_errors(true);
46 46
         $xml = simplexml_load_string($xml);
47 47
         $errors = libxml_get_errors();
48
-        if (! empty($errors)) {
48
+        if (!empty($errors)) {
49 49
             throw new \Exception("Failed to parse OFX: " . var_export($errors, true));
50 50
         }
51 51
         
Please login to merge, or discard this patch.
tests/OfxParseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * @expectedException Exception
19 19
      */
20 20
     public function wrongXmlFormat()
21
-    {$a=new OfxParser('<OFX><root></rot></OFX>');}
21
+    {$a = new OfxParser('<OFX><root></rot></OFX>'); }
22 22
 
23 23
     /**
24 24
      * @test
Please login to merge, or discard this patch.