Passed
Push — v5 ( abf6c2...81dcab )
by smiley
01:49
created
src/Common/ECICharset.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -17,16 +17,16 @@  discard block
 block discarded – undo
17 17
 
18 18
 class ECICharset{
19 19
 
20
-	public const CP437                 = 0;  // Code page 437, DOS Latin US
21
-	public const ISO_IEC_8859_1_GLI    = 1;  // GLI encoding with characters 0 to 127 identical to ISO/IEC 646 and characters 128 to 255 identical to ISO 8859-1
22
-	public const CP437_WO_GLI          = 2;  // An equivalent code table to CP437, without the return-to-GLI 0 logic
23
-	public const ISO_IEC_8859_1        = 3;  // Latin-1 (Default)
24
-	public const ISO_IEC_8859_2        = 4;  // Latin-2
25
-	public const ISO_IEC_8859_3        = 5;  // Latin-3
26
-	public const ISO_IEC_8859_4        = 6;  // Latin-4
27
-	public const ISO_IEC_8859_5        = 7;  // Latin/Cyrillic
28
-	public const ISO_IEC_8859_6        = 8;  // Latin/Arabic
29
-	public const ISO_IEC_8859_7        = 9;  // Latin/Greek
20
+	public const CP437                 = 0; // Code page 437, DOS Latin US
21
+	public const ISO_IEC_8859_1_GLI    = 1; // GLI encoding with characters 0 to 127 identical to ISO/IEC 646 and characters 128 to 255 identical to ISO 8859-1
22
+	public const CP437_WO_GLI          = 2; // An equivalent code table to CP437, without the return-to-GLI 0 logic
23
+	public const ISO_IEC_8859_1        = 3; // Latin-1 (Default)
24
+	public const ISO_IEC_8859_2        = 4; // Latin-2
25
+	public const ISO_IEC_8859_3        = 5; // Latin-3
26
+	public const ISO_IEC_8859_4        = 6; // Latin-4
27
+	public const ISO_IEC_8859_5        = 7; // Latin/Cyrillic
28
+	public const ISO_IEC_8859_6        = 8; // Latin/Arabic
29
+	public const ISO_IEC_8859_7        = 9; // Latin/Greek
30 30
 	public const ISO_IEC_8859_8        = 10; // Latin/Hebrew
31 31
 	public const ISO_IEC_8859_9        = 11; // Latin-5
32 32
 	public const ISO_IEC_8859_10       = 12; // Latin-6
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 		return $this->charsetID;
102 102
 	}
103 103
 
104
-	public function getName():?string{
104
+	public function getName(): ?string{
105 105
 		return self::MB_ENCODINGS[$this->charsetID];
106 106
 	}
107 107
 
Please login to merge, or discard this patch.