Completed
Push — develop ( cff0a3...e29564 )
by Greg
14:17
created
Category
src/Locale.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	 * @throws \DomainException
33 33
 	 */
34 34
 	public static function create($code) {
35
-		$class = __NAMESPACE__ . '\Locale\Locale' . implode(array_map(function($x) {
35
+		$class = __NAMESPACE__.'\Locale\Locale'.implode(array_map(function($x) {
36 36
 			return ucfirst(strtolower($x));
37 37
 		}, preg_split('/[^a-zA-Z0-9]+/', $code)));
38 38
 
Please login to merge, or discard this patch.
src/Locale/LocaleRn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
 	}
31 31
 
32 32
 	protected function percentFormat() {
33
-		return '%s' . self::NBSP . self::PERCENT;
33
+		return '%s'.self::NBSP.self::PERCENT;
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
src/Locale/LocaleEnAt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  */
12 12
 class LocaleEnAt extends LocaleEn {
13 13
 	protected function percentFormat() {
14
-		return '%s' . self::NBSP . self::PERCENT;
14
+		return '%s'.self::NBSP.self::PERCENT;
15 15
 	}
16 16
 
17 17
 	public function territory() {
Please login to merge, or discard this patch.
src/Locale/LocaleFo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
 	}
32 32
 
33 33
 	protected function percentFormat() {
34
-		return '%s' . self::NBSP . self::PERCENT;
34
+		return '%s'.self::NBSP.self::PERCENT;
35 35
 	}
36 36
 }
Please login to merge, or discard this patch.
src/Locale/LocaleBr.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
 	}
31 31
 
32 32
 	protected function percentFormat() {
33
-		return '%s' . self::NBSP . self::PERCENT;
33
+		return '%s'.self::NBSP.self::PERCENT;
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
src/Locale/LocaleEu.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
 	}
31 31
 
32 32
 	protected function percentFormat() {
33
-		return self::PERCENT . self::NBSP . '%s';
33
+		return self::PERCENT.self::NBSP.'%s';
34 34
 	}
35 35
 }
Please login to merge, or discard this patch.
src/Locale/LocaleDz.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
 	}
24 24
 
25 25
 	protected function percentFormat() {
26
-		return '%s' . self::NBSP . self::PERCENT;
26
+		return '%s'.self::NBSP.self::PERCENT;
27 27
 	}
28 28
 }
Please login to merge, or discard this patch.
src/Locale/LocaleEsDo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  */
12 12
 class LocaleEsDo extends LocaleEs {
13 13
 	protected function percentFormat() {
14
-		return '%s' . self::PERCENT;
14
+		return '%s'.self::PERCENT;
15 15
 	}
16 16
 
17 17
 	public function territory() {
Please login to merge, or discard this patch.
src/Locale/LocaleEs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 	}
29 29
 
30 30
 	protected function percentFormat() {
31
-		return '%s' . self::NBSP . self::PERCENT;
31
+		return '%s'.self::NBSP.self::PERCENT;
32 32
 	}
33 33
 
34 34
 	public function territory() {
Please login to merge, or discard this patch.