Completed
Push — develop ( 714528...0e9dd7 )
by Greg
04:25
created
src/Language/AbstractLanguage.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@
 block discarded – undo
13 13
  */
14 14
 abstract class AbstractLanguage
15 15
 {
16
-    public function defaultTerritory()
17
-    {
18
-        return new Territory001();
19
-    }
16
+	public function defaultTerritory()
17
+	{
18
+		return new Territory001();
19
+	}
20 20
 
21
-    public function defaultScript()
22
-    {
23
-        return new ScriptLatn();
24
-    }
21
+	public function defaultScript()
22
+	{
23
+		return new ScriptLatn();
24
+	}
25 25
 
26
-    public function pluralRule()
27
-    {
28
-        return new PluralRuleUnknown();
29
-    }
26
+	public function pluralRule()
27
+	{
28
+		return new PluralRuleUnknown();
29
+	}
30 30
 }
Please login to merge, or discard this patch.
src/PluralRule/PluralRuleUnknown.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@
 block discarded – undo
13 13
  */
14 14
 class PluralRuleUnknown implements PluralRuleInterface
15 15
 {
16
-    public function plurals()
17
-    {
18
-        throw new DomainException('No plural rule defined for this language');
19
-    }
16
+	public function plurals()
17
+	{
18
+		throw new DomainException('No plural rule defined for this language');
19
+	}
20 20
 
21
-    public function plural($number)
22
-    {
23
-        throw new DomainException('No plural rule defined for this language');
24
-    }
21
+	public function plural($number)
22
+	{
23
+		throw new DomainException('No plural rule defined for this language');
24
+	}
25 25
 }
Please login to merge, or discard this patch.