Passed
Push — 1.x ( fb82a9...cd6c0f )
by Milwad
01:16 queued 12s
created
src/Rules/ValidImei.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
         $digits = str_split($imei); // Get digits
25 25
         $imei_last = array_pop($digits); // Remove last digit, and store it
26
-        $log = [];
26
+        $log = [ ];
27 27
 
28 28
         foreach ($digits as $key => $n) {
29 29
             if ($key & 1) {
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
                 $n = array_sum($double); // Sum double digits
32 32
             }
33 33
 
34
-            $log[] = $n; // Append log
34
+            $log[ ] = $n; // Append log
35 35
         }
36 36
         $sum = array_sum($log) * 9; // Sum log & multiply by 9
37 37
 
Please login to merge, or discard this patch.
src/Rules/ValidJalaliDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function passes($attribute, $value)
18 18
     {
19
-        if (! is_string($value)) {
19
+        if ( ! is_string($value)) {
20 20
             return false;
21 21
         }
22 22
 
Please login to merge, or discard this patch.
src/Rules/ValidCartNumberIran.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
         $cardToArr = str_split($value);
19 19
         $cardTotal = 0;
20 20
         for ($i = 0; $i < 16; $i++) {
21
-            $c = (int) $cardToArr[$i];
21
+            $c = (int) $cardToArr[ $i ];
22 22
             if ($i % 2 === 0) {
23 23
                 $cardTotal += (($c * 2 > 9) ? ($c * 2) - 9 : ($c * 2));
24 24
             } else {
Please login to merge, or discard this patch.
src/Rules/ValidNationalCard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function passes($attribute, $value)
17 17
     {
18
-        if (! preg_match('/^\d{10}$/', $value)) {
18
+        if ( ! preg_match('/^\d{10}$/', $value)) {
19 19
             return false;
20 20
         }
21 21
 
Please login to merge, or discard this patch.
src/Rules/ValidIban.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
      */
168 168
     private ?array $countries;
169 169
 
170
-    public function __construct(array|string $countries = [])
170
+    public function __construct(array | string $countries = [ ])
171 171
     {
172 172
         $this->setCountries(func_get_args());
173 173
     }
Please login to merge, or discard this patch.
src/Traits/IbanTrait.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -12,17 +12,17 @@  discard block
 block discarded – undo
12 12
     private function setCountries(?array $countries)
13 13
     {
14 14
         if (empty($countries)) {
15
-            $this->countries = [];
15
+            $this->countries = [ ];
16 16
 
17 17
             return;
18 18
         }
19 19
 
20
-        if (is_array($countries[0])) {
21
-            $countries = $countries[0];
20
+        if (is_array($countries[ 0 ])) {
21
+            $countries = $countries[ 0 ];
22 22
         }
23 23
 
24 24
         foreach ($countries as $country) {
25
-            $this->countries[] = $country;
25
+            $this->countries[ ] = $country;
26 26
         }
27 27
     }
28 28
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     private function isIbanValid(string $iban)
35 35
     {
36
-        if (! $this->checkIbanFormat($iban)) {
36
+        if ( ! $this->checkIbanFormat($iban)) {
37 37
             return false;
38 38
         }
39 39
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     private function isCountryValid(string $country, string $ibanCountryCode)
128 128
     {
129 129
         return ! empty($country)
130
-            && isset($this->ibanLengthByCountry[$country])
130
+            && isset($this->ibanLengthByCountry[ $country ])
131 131
             && $ibanCountryCode === $country;
132 132
     }
133 133
 
@@ -138,6 +138,6 @@  discard block
 block discarded – undo
138 138
      */
139 139
     private function isIbanLengthValid(string $iban, string $ibanCountryCode)
140 140
     {
141
-        return strlen($iban) === $this->ibanLengthByCountry[$ibanCountryCode];
141
+        return strlen($iban) === $this->ibanLengthByCountry[ $ibanCountryCode ];
142 142
     }
143 143
 }
Please login to merge, or discard this patch.
src/Utils/CountryPhoneCallback.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
      */
197 197
     public function callPhoneValidator(): array
198 198
     {
199
-        $results = [];
199
+        $results = [ ];
200 200
         $codes = explode(',', $this->code);
201 201
         $codes = array_map('strtoupper', $codes);
202 202
 
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
             $methodName = 'validate'.$code;
205 205
 
206 206
             if (method_exists($this, $methodName)) {
207
-                $results[$code] = $this->{$methodName}();
207
+                $results[ $code ] = $this->{$methodName}();
208 208
             } else {
209 209
                 throw new \BadMethodCallException("Validator method '{$methodName}' does not exist.");
210 210
             }
Please login to merge, or discard this patch.
src/Rules/ValidCreditCard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $reverse = strrev($value);
23 23
 
24 24
         for ($i = 0; $i < $numLength; $i++) {
25
-            $currentNum = intval($reverse[$i]);
25
+            $currentNum = intval($reverse[ $i ]);
26 26
             if ($i % 2 == 1) {
27 27
                 $currentNum *= 2;
28 28
                 if ($currentNum > 9) {
Please login to merge, or discard this patch.