Passed
Push — master ( e6d8af...72f1d8 )
by James
09:53 queued 10s
created
app/Services/CSV/Converter/Iban.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         Log::debug(sprintf('Trim: isValidIBAN("%s")', $value));
68 68
         $search  = [' ', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
69 69
         $replace = ['', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31',
70
-                    '32', '33', '34', '35',];
70
+                    '32', '33', '34', '35', ];
71 71
         // take
72 72
         $first = substr($value, 0, 4);
73 73
         $last  = substr($value, 4);
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             $checksum = 2;
81 81
         }
82 82
 
83
-        return 1 === (int) $checksum;
83
+        return 1 === (int)$checksum;
84 84
     }
85 85
 
86 86
     /**
Please login to merge, or discard this patch.