Passed
Push — master ( 4f2992...0b6add )
by Mihai
01:32
created
src/Pluralization/RuleFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.