Completed
Push — master ( e29564...0c58a0 )
by Greg
22:41 queued 10:16
created
src/Locale/LocalePs.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@
 block discarded – undo
22 22
 		return array(
23 23
 			self::GROUP    => self::ARAB_GROUP,
24 24
 			self::DECIMAL  => self::ARAB_DECIMAL,
25
-			self::NEGATIVE => self::LTR_MARK . self::HYPHEN . self::LTR_MARK,
25
+			self::NEGATIVE => self::LTR_MARK.self::HYPHEN.self::LTR_MARK,
26 26
 		);
27 27
 	}
28 28
 
29 29
 	protected function percentFormat() {
30
-		return '%s' . self::ARAB_PERCENT;
30
+		return '%s'.self::ARAB_PERCENT;
31 31
 	}
32 32
 }
Please login to merge, or discard this patch.
src/Locale/LocaleNah.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	}
31 31
 
32 32
 	protected function percentFormat() {
33
-		return '%s' . self::PERCENT;
33
+		return '%s'.self::PERCENT;
34 34
 	}
35 35
 
36 36
 }
Please login to merge, or discard this patch.
src/Locale/LocaleArLy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 		return array(
15 15
 			self::GROUP    => self::DOT,
16 16
 			self::DECIMAL  => self::COMMA,
17
-			self::NEGATIVE => self::LTR_MARK . self::HYPHEN,
17
+			self::NEGATIVE => self::LTR_MARK.self::HYPHEN,
18 18
 		);
19 19
 	}
20 20
 
Please login to merge, or discard this patch.
src/Locale/LocaleIu.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/Translator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 * @return string Translated text
54 54
 	 */
55 55
 	public function translateContext($context, $message) {
56
-		$key = $context . chr(4) . $message;
56
+		$key = $context.chr(4).$message;
57 57
 		if (isset($this->translations[$key])) {
58 58
 			return $this->translations[$key];
59 59
 		} else {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 	 * @return string Translated text
73 73
 	 */
74 74
 	public function translatePlural($message1, $message2, $number) {
75
-		$key = $message1 . chr(0) . $message2;
75
+		$key = $message1.chr(0).$message2;
76 76
 		if (isset($this->translations[$key])) {
77 77
 			$plurals = explode(chr(0), $this->translations[$key]);
78 78
 			if (count($plurals) === $this->plural_rule->plurals()) {
Please login to merge, or discard this patch.
src/Language/AbstractLanguage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
 	}
21 21
 
22 22
 	public function pluralRule() {
23
-		throw new \DomainException('No plural rule defined for language ' . __CLASS__);
23
+		throw new \DomainException('No plural rule defined for language '.__CLASS__);
24 24
 	}
25 25
 }
Please login to merge, or discard this patch.
src/Translation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 	private function readMoWords($fp, $offset, $count, $pack) {
73 73
 		fseek($fp, $offset);
74 74
 
75
-		return unpack($pack . $count, fread($fp, $count * 4));
75
+		return unpack($pack.$count, fread($fp, $count * 4));
76 76
 	}
77 77
 
78 78
 	/**
Please login to merge, or discard this patch.
src/Locale/LocaleArDz.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 		return array(
15 15
 			self::GROUP    => self::DOT,
16 16
 			self::DECIMAL  => self::COMMA,
17
-			self::NEGATIVE => self::LTR_MARK . self::HYPHEN,
17
+			self::NEGATIVE => self::LTR_MARK.self::HYPHEN,
18 18
 		);
19 19
 	}
20 20
 
Please login to merge, or discard this patch.
src/Locale/LocaleEsCo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	}
31 31
 
32 32
 	protected function percentFormat() {
33
-		return '%s' . self::PERCENT;
33
+		return '%s'.self::PERCENT;
34 34
 	}
35 35
 
36 36
 }
Please login to merge, or discard this patch.