@@ -23,7 +23,7 @@ discard block |
||
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 |
||
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 |
@@ -16,7 +16,7 @@ |
||
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 |
@@ -18,7 +18,7 @@ |
||
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 { |
@@ -15,7 +15,7 @@ |
||
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 |
@@ -82,8 +82,8 @@ |
||
82 | 82 | */ |
83 | 83 | private function loadValidations() |
84 | 84 | { |
85 | - foreach (config('laravel-validate.rules', []) as $rule) { |
|
86 | - Validator::extend('validate-'.$rule['name'], function ($attribute, $value, $parameters, $validator) use ($rule) { |
|
85 | + foreach (config('laravel-validate.rules', [ ]) as $rule) { |
|
86 | + Validator::extend('validate-'.$rule[ 'name' ], function($attribute, $value, $parameters, $validator) use ($rule) { |
|
87 | 87 | $rule = new $rule(...$parameters); |
88 | 88 | |
89 | 89 | return $rule->passes($attribute, $value); |
@@ -167,7 +167,7 @@ |
||
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 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function callPhoneValidator(): array |
31 | 31 | { |
32 | - $results = []; |
|
32 | + $results = [ ]; |
|
33 | 33 | |
34 | 34 | $codes = explode(',', $this->code); |
35 | 35 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $methodName = 'validate'.$code; |
40 | 40 | |
41 | 41 | if (method_exists($this, $methodName)) { |
42 | - $results[$code] = $this->{$methodName}(); |
|
42 | + $results[ $code ] = $this->{$methodName}(); |
|
43 | 43 | } else { |
44 | 44 | throw new \BadMethodCallException("Validator method '{$methodName}' does not exist."); |
45 | 45 | } |
@@ -12,17 +12,17 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 | } |