Passed
Push — master ( 7fc1c6...790207 )
by Adelar
04:53
created
tests/OfxParseTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function itau()
31 31
     {
32
-        $ofx = OfxParser::loadOfx(__DIR__ . '/fixtures/extrato_itau.ofx');
32
+        $ofx = OfxParser::loadOfx(__DIR__.'/fixtures/extrato_itau.ofx');
33 33
         $this->assertInstanceOf(Ofx::class, $ofx);
34 34
         $this->assertInternalType('array', $ofx->jsonSerialize());
35 35
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function santander()
43 43
     {
44
-        $ofx = OfxParser::loadOfx(__DIR__ . '/fixtures/extrato_santander.ofx');
44
+        $ofx = OfxParser::loadOfx(__DIR__.'/fixtures/extrato_santander.ofx');
45 45
         $this->assertInstanceOf(Ofx::class, $ofx);
46 46
         $this->assertInternalType('array', $ofx->jsonSerialize());
47 47
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function caixa()
55 55
     {
56
-        $ofx = OfxParser::loadOfx(__DIR__ . '/fixtures/extrato_caixa.ofx');
56
+        $ofx = OfxParser::loadOfx(__DIR__.'/fixtures/extrato_caixa.ofx');
57 57
         $this->assertInstanceOf(Ofx::class, $ofx);
58 58
         $this->assertInternalType('array', $ofx->jsonSerialize());
59 59
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function faturaCC()
67 67
     {
68
-        $ofx = OfxParser::loadOfx(__DIR__ . '/fixtures/fatura_cc_1.ofx');
68
+        $ofx = OfxParser::loadOfx(__DIR__.'/fixtures/fatura_cc_1.ofx');
69 69
         $this->assertInstanceOf(Ofx::class, $ofx);
70 70
         $this->assertInternalType('array', $ofx->jsonSerialize());
71 71
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function itauIso()
79 79
     {
80
-        $ofx = OfxParser::loadOfx(__DIR__ . '/fixtures/extrato_itau_iso.ofx');
80
+        $ofx = OfxParser::loadOfx(__DIR__.'/fixtures/extrato_itau_iso.ofx');
81 81
         $this->assertInstanceOf(Ofx::class, $ofx);
82 82
         $this->assertInternalType('array', $ofx->jsonSerialize());
83 83
 
Please login to merge, or discard this patch.