Completed
Push — develop ( 097596...b2a605 )
by Greg
02:18
created
src/Translation.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@
 block discarded – undo
47 47
 		case 'php':
48 48
 			$translations = include $filename;
49 49
 			if (is_array($translations)) {
50
-			    $this->translations = $translations;
51
-            }
50
+				$this->translations = $translations;
51
+			}
52 52
 			break;
53 53
 		}
54 54
 	}
Please login to merge, or discard this patch.
src/Locale/LocaleArMa.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -11,25 +11,25 @@
 block discarded – undo
11 11
  * @license       GPLv3+
12 12
  */
13 13
 class LocaleArMa extends LocaleAr {
14
-    public function numberSymbols() {
15
-        return array(
16
-            self::GROUP    => self::DOT,
17
-            self::DECIMAL  => self::COMMA,
18
-            self::NEGATIVE => self::LTR_MARK . '-',
19
-        );
20
-    }
14
+	public function numberSymbols() {
15
+		return array(
16
+			self::GROUP    => self::DOT,
17
+			self::DECIMAL  => self::COMMA,
18
+			self::NEGATIVE => self::LTR_MARK . '-',
19
+		);
20
+	}
21 21
 
22
-    protected function numerals() {
23
-        $latin = new ScriptLatn();
22
+	protected function numerals() {
23
+		$latin = new ScriptLatn();
24 24
 
25
-        return $latin->numerals();
26
-    }
25
+		return $latin->numerals();
26
+	}
27 27
 
28
-    protected function percentFormat() {
29
-        return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
30
-    }
28
+	protected function percentFormat() {
29
+		return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
30
+	}
31 31
 
32
-    public function territory() {
32
+	public function territory() {
33 33
 		return new TerritoryMa;
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
src/Locale/LocaleArEh.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -11,23 +11,23 @@
 block discarded – undo
11 11
  * @license       GPLv3+
12 12
  */
13 13
 class LocaleArEh extends LocaleAr {
14
-    public function numberSymbols() {
15
-        return array(
16
-            self::NEGATIVE => self::LTR_MARK . '-',
17
-        );
18
-    }
14
+	public function numberSymbols() {
15
+		return array(
16
+			self::NEGATIVE => self::LTR_MARK . '-',
17
+		);
18
+	}
19 19
 
20
-    protected function numerals() {
21
-        $latin = new ScriptLatn();
20
+	protected function numerals() {
21
+		$latin = new ScriptLatn();
22 22
 
23
-        return $latin->numerals();
24
-    }
23
+		return $latin->numerals();
24
+	}
25 25
 
26
-    protected function percentFormat() {
27
-        return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
28
-    }
26
+	protected function percentFormat() {
27
+		return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
28
+	}
29 29
 
30
-    public function territory() {
30
+	public function territory() {
31 31
 		return new TerritoryEh;
32 32
 	}
33 33
 }
Please login to merge, or discard this patch.
src/Locale/LocaleBsCyrl.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 		return new ScriptCyrl;
15 15
 	}
16 16
 
17
-    protected function percentFormat() {
18
-        return '%s' . self::PERCENT;
19
-    }
17
+	protected function percentFormat() {
18
+		return '%s' . self::PERCENT;
19
+	}
20 20
 }
Please login to merge, or discard this patch.
src/Locale/LocaleArLy.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -11,25 +11,25 @@
 block discarded – undo
11 11
  * @license       GPLv3+
12 12
  */
13 13
 class LocaleArLy extends LocaleAr {
14
-    public function numberSymbols() {
15
-        return array(
16
-            self::GROUP    => self::DOT,
17
-            self::DECIMAL  => self::COMMA,
18
-            self::NEGATIVE => self::LTR_MARK . '-',
19
-        );
20
-    }
14
+	public function numberSymbols() {
15
+		return array(
16
+			self::GROUP    => self::DOT,
17
+			self::DECIMAL  => self::COMMA,
18
+			self::NEGATIVE => self::LTR_MARK . '-',
19
+		);
20
+	}
21 21
 
22
-    protected function numerals() {
23
-        $latin = new ScriptLatn();
22
+	protected function numerals() {
23
+		$latin = new ScriptLatn();
24 24
 
25
-        return $latin->numerals();
26
-    }
25
+		return $latin->numerals();
26
+	}
27 27
 
28
-    protected function percentFormat() {
29
-        return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
30
-    }
28
+	protected function percentFormat() {
29
+		return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
30
+	}
31 31
 
32
-    public function territory() {
32
+	public function territory() {
33 33
 		return new TerritoryLy;
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
src/Locale/LocaleBs.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 		);
30 30
 	}
31 31
 
32
-    protected function percentFormat() {
33
-        return '%s' . self::NBSP . self::PERCENT;
34
-    }
32
+	protected function percentFormat() {
33
+		return '%s' . self::NBSP . self::PERCENT;
34
+	}
35 35
 }
Please login to merge, or discard this patch.
src/Locale/LocaleCcpIn.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
  * @license       GPLv3+
11 11
  */
12 12
 class LocaleCcpIn extends LocaleCcp implements LocaleInterface {
13
-    public function territory() {
14
-        return new TerritoryIn;
15
-    }
13
+	public function territory() {
14
+		return new TerritoryIn;
15
+	}
16 16
 }
Please login to merge, or discard this patch.
src/Locale/LocaleArDz.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,21 +15,21 @@
 block discarded – undo
15 15
 		return array(
16 16
 			self::GROUP    => self::DOT,
17 17
 			self::DECIMAL  => self::COMMA,
18
-            self::NEGATIVE => self::LTR_MARK . '-',
18
+			self::NEGATIVE => self::LTR_MARK . '-',
19 19
 		);
20 20
 	}
21 21
 
22
-    protected function numerals() {
23
-        $latin = new ScriptLatn();
22
+	protected function numerals() {
23
+		$latin = new ScriptLatn();
24 24
 
25
-        return $latin->numerals();
26
-    }
25
+		return $latin->numerals();
26
+	}
27 27
 
28
-    protected function percentFormat() {
29
-        return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
30
-    }
28
+	protected function percentFormat() {
29
+		return '%s' . self::LTR_MARK . self::PERCENT . self::LTR_MARK;
30
+	}
31 31
 
32
-    public function territory() {
32
+	public function territory() {
33 33
 		return new TerritoryDz;
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
src/Locale/LocaleGl.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	}
31 31
 
32 32
 	public function percentFormat()
33
-    {
34
-        return '%s' . self::NBSP . self::PERCENT;
35
-    }
33
+	{
34
+		return '%s' . self::NBSP . self::PERCENT;
35
+	}
36 36
 }
Please login to merge, or discard this patch.