Passed
Pull Request — master (#2)
by farhad
07:23
created
src/Rules/ShebaNumber.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,9 @@
 block discarded – undo
16 16
     {
17 17
         $ibanReplaceValues = [];
18 18
 
19
-        if (empty($value))
20
-            return false;
19
+        if (empty($value)) {
20
+                    return false;
21
+        }
21 22
 
22 23
         $value = preg_replace('/[\W_]+/', '', strtoupper($value));
23 24
         if ((4 > strlen($value) || strlen($value) > 34) || (is_numeric($value [0]) || is_numeric($value [1])) || (!is_numeric($value [2]) || !is_numeric($value [3]))) {
Please login to merge, or discard this patch.