Passed
Push — v5 ( 33c1e2...f092e8 )
by smiley
01:52
created
src/Common/ECICharset.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -18,16 +18,16 @@  discard block
 block discarded – undo
18 18
  */
19 19
 final class ECICharset{
20 20
 
21
-	public const CP437                 = 0;  // Code page 437, DOS Latin US
22
-	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
23
-	public const CP437_WO_GLI          = 2;  // An equivalent code table to CP437, without the return-to-GLI 0 logic
24
-	public const ISO_IEC_8859_1        = 3;  // Latin-1 (Default)
25
-	public const ISO_IEC_8859_2        = 4;  // Latin-2
26
-	public const ISO_IEC_8859_3        = 5;  // Latin-3
27
-	public const ISO_IEC_8859_4        = 6;  // Latin-4
28
-	public const ISO_IEC_8859_5        = 7;  // Latin/Cyrillic
29
-	public const ISO_IEC_8859_6        = 8;  // Latin/Arabic
30
-	public const ISO_IEC_8859_7        = 9;  // Latin/Greek
21
+	public const CP437                 = 0; // Code page 437, DOS Latin US
22
+	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
23
+	public const CP437_WO_GLI          = 2; // An equivalent code table to CP437, without the return-to-GLI 0 logic
24
+	public const ISO_IEC_8859_1        = 3; // Latin-1 (Default)
25
+	public const ISO_IEC_8859_2        = 4; // Latin-2
26
+	public const ISO_IEC_8859_3        = 5; // Latin-3
27
+	public const ISO_IEC_8859_4        = 6; // Latin-4
28
+	public const ISO_IEC_8859_5        = 7; // Latin/Cyrillic
29
+	public const ISO_IEC_8859_6        = 8; // Latin/Arabic
30
+	public const ISO_IEC_8859_7        = 9; // Latin/Greek
31 31
 	public const ISO_IEC_8859_8        = 10; // Latin/Hebrew
32 32
 	public const ISO_IEC_8859_9        = 11; // Latin-5
33 33
 	public const ISO_IEC_8859_10       = 12; // Latin-6
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 		return $this->charsetID;
103 103
 	}
104 104
 
105
-	public function getName():?string{
105
+	public function getName(): ?string{
106 106
 		return self::MB_ENCODINGS[$this->charsetID];
107 107
 	}
108 108
 
Please login to merge, or discard this patch.