@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * @var array |
31 | 31 | */ |
32 | - private static $localesRulesMapping = [ |
|
32 | + private static $localesRulesMapping=[ |
|
33 | 33 | 'ar' => Arabic::class, |
34 | 34 | 'bs-Latn-BA' => BosnianSerbian::class, |
35 | 35 | 'bs-Cyrl-BA' => BosnianSerbian::class, |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | public static function make(string $locale): RuleInterface |
72 | 72 | { |
73 | - $rule = self::$localesRulesMapping[$locale] ?? German::class; |
|
73 | + $rule=self::$localesRulesMapping[$locale] ?? German::class; |
|
74 | 74 | |
75 | 75 | return new $rule(); |
76 | 76 | } |