Passed
Push — main ( 3cd977...23388e )
by smiley
11:41
created
src/QRCode.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	 * @see \chillerlan\QRCode\Common\Version::AUTO
34 34
 	 * @var int
35 35
 	 */
36
-	public const VERSION_AUTO      = Version::AUTO;
36
+	public const VERSION_AUTO = Version::AUTO;
37 37
 
38 38
 	/**
39 39
 	 * @deprecated 5.0.0 use MaskPattern::AUTO instead
@@ -82,28 +82,28 @@  discard block
 block discarded – undo
82 82
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::MARKUP_SVG
83 83
 	 * @var string
84 84
 	 */
85
-	public const OUTPUT_MARKUP_SVG  = QROutputInterface::MARKUP_SVG;
85
+	public const OUTPUT_MARKUP_SVG = QROutputInterface::MARKUP_SVG;
86 86
 
87 87
 	/**
88 88
 	 * @deprecated 5.0.0 use QROutputInterface::GDIMAGE_PNG instead
89 89
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::GDIMAGE_PNG
90 90
 	 * @var string
91 91
 	 */
92
-	public const OUTPUT_IMAGE_PNG   = QROutputInterface::GDIMAGE_PNG;
92
+	public const OUTPUT_IMAGE_PNG = QROutputInterface::GDIMAGE_PNG;
93 93
 
94 94
 	/**
95 95
 	 * @deprecated 5.0.0 use QROutputInterface::GDIMAGE_JPG instead
96 96
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::GDIMAGE_JPG
97 97
 	 * @var string
98 98
 	 */
99
-	public const OUTPUT_IMAGE_JPG   = QROutputInterface::GDIMAGE_JPG;
99
+	public const OUTPUT_IMAGE_JPG = QROutputInterface::GDIMAGE_JPG;
100 100
 
101 101
 	/**
102 102
 	 * @deprecated 5.0.0 use QROutputInterface::GDIMAGE_GIF instead
103 103
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::GDIMAGE_GIF
104 104
 	 * @var string
105 105
 	 */
106
-	public const OUTPUT_IMAGE_GIF   = QROutputInterface::GDIMAGE_GIF;
106
+	public const OUTPUT_IMAGE_GIF = QROutputInterface::GDIMAGE_GIF;
107 107
 
108 108
 	/**
109 109
 	 * @deprecated 5.0.0 use QROutputInterface::STRING_JSON instead
@@ -124,35 +124,35 @@  discard block
 block discarded – undo
124 124
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::IMAGICK
125 125
 	 * @var string
126 126
 	 */
127
-	public const OUTPUT_IMAGICK     = QROutputInterface::IMAGICK;
127
+	public const OUTPUT_IMAGICK = QROutputInterface::IMAGICK;
128 128
 
129 129
 	/**
130 130
 	 * @deprecated 5.0.0 use QROutputInterface::FPDF instead
131 131
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::FPDF
132 132
 	 * @var string
133 133
 	 */
134
-	public const OUTPUT_FPDF        = QROutputInterface::FPDF;
134
+	public const OUTPUT_FPDF = QROutputInterface::FPDF;
135 135
 
136 136
 	/**
137 137
 	 * @deprecated 5.0.0 use QROutputInterface::EPS instead
138 138
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::EPS
139 139
 	 * @var string
140 140
 	 */
141
-	public const OUTPUT_EPS         = QROutputInterface::EPS;
141
+	public const OUTPUT_EPS = QROutputInterface::EPS;
142 142
 
143 143
 	/**
144 144
 	 * @deprecated 5.0.0 use QROutputInterface::CUSTOM instead
145 145
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::CUSTOM
146 146
 	 * @var string
147 147
 	 */
148
-	public const OUTPUT_CUSTOM      = QROutputInterface::CUSTOM;
148
+	public const OUTPUT_CUSTOM = QROutputInterface::CUSTOM;
149 149
 
150 150
 	/**
151 151
 	 * @deprecated 5.0.0 use QROutputInterface::MODES instead
152 152
 	 * @see \chillerlan\QRCode\Output\QROutputInterface::MODES
153 153
 	 * @var string[]
154 154
 	 */
155
-	public const OUTPUT_MODES       = QROutputInterface::MODES;
155
+	public const OUTPUT_MODES = QROutputInterface::MODES;
156 156
 
157 157
 	/**
158 158
 	 * The settings container
Please login to merge, or discard this patch.