@@ -21,14 +21,14 @@ |
||
21 | 21 | { |
22 | 22 | Validator::extend( |
23 | 23 | PhoneRules::WORLD, |
24 | - static function ($attribute, $value) { |
|
24 | + static function($attribute, $value) { |
|
25 | 25 | return preg_match(PhoneRegex::WORLD, $value); |
26 | 26 | } |
27 | 27 | ); |
28 | 28 | |
29 | 29 | Validator::extend( |
30 | 30 | PhoneRules::CIS, |
31 | - static function ($attribute, $value) { |
|
31 | + static function($attribute, $value) { |
|
32 | 32 | return preg_match(PhoneRegex::CIS, $value); |
33 | 33 | } |
34 | 34 | ); |