Passed
Push — master ( ba00c7...bfa3fc )
by Sebastian
08:42
created
src/VariableInfo/Renderer.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@  discard block
 block discarded – undo
6 6
 
7 7
 abstract class VariableInfo_Renderer
8 8
 {
9
-   /**
10
-    * @var mixed|NULL
11
-    */
9
+    /**
10
+     * @var mixed|NULL
11
+     */
12 12
     protected $value;
13 13
     
14 14
     protected VariableInfo $info;
@@ -24,11 +24,11 @@  discard block
 block discarded – undo
24 24
     
25 25
     abstract protected function init() : void;
26 26
 
27
-   /**
28
-    * Renders the value to the target format.
29
-    * 
30
-    * @return string
31
-    */
27
+    /**
28
+     * Renders the value to the target format.
29
+     * 
30
+     * @return string
31
+     */
32 32
     public function render() : string
33 33
     {
34 34
         return $this->_render();
Please login to merge, or discard this patch.
src/RGBAColor/ColorFactory.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public static function getPresetsManager() : PresetsManager
43 43
     {
44
-        if(!isset(self::$presets))
44
+        if (!isset(self::$presets))
45 45
         {
46 46
             self::$presets = new PresetsManager();
47 47
         }
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
      * @param string $name
58 58
      * @return RGBAColor
59 59
      */
60
-    public static function create(ColorChannel $red, ColorChannel $green, ColorChannel $blue, ?ColorChannel $alpha=null, string $name='') : RGBAColor
60
+    public static function create(ColorChannel $red, ColorChannel $green, ColorChannel $blue, ?ColorChannel $alpha = null, string $name = '') : RGBAColor
61 61
     {
62
-        if($alpha === null)
62
+        if ($alpha === null)
63 63
         {
64 64
             $alpha = ColorChannel::eightBit(0);
65 65
         }
@@ -86,31 +86,31 @@  discard block
 block discarded – undo
86 86
      */
87 87
     public static function createAuto($subject) : ?RGBAColor
88 88
     {
89
-        if($subject instanceof RGBAColor)
89
+        if ($subject instanceof RGBAColor)
90 90
         {
91 91
             return $subject;
92 92
         }
93 93
 
94
-        if(is_array($subject))
94
+        if (is_array($subject))
95 95
         {
96 96
             return self::createFrom8BitArray($subject);
97 97
         }
98 98
 
99 99
         $hexOrPreset = (string)$subject;
100 100
 
101
-        if($hexOrPreset === '')
101
+        if ($hexOrPreset === '')
102 102
         {
103 103
             return null;
104 104
         }
105 105
 
106 106
         $manager = self::getPresetsManager();
107 107
 
108
-        if($manager->hasPreset($hexOrPreset))
108
+        if ($manager->hasPreset($hexOrPreset))
109 109
         {
110 110
             return $manager->getPreset($hexOrPreset);
111 111
         }
112 112
 
113
-        if(preg_match('/[a-f0-9]{3,8}/i', $hexOrPreset))
113
+        if (preg_match('/[a-f0-9]{3,8}/i', $hexOrPreset))
114 114
         {
115 115
             return self::createFromHEX($hexOrPreset);
116 116
         }
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     {
159 159
         $color = FormatsConverter::array2associative($color);
160 160
 
161
-        if(!isset($color[RGBAColor::CHANNEL_ALPHA]))
161
+        if (!isset($color[RGBAColor::CHANNEL_ALPHA]))
162 162
         {
163 163
             $color[RGBAColor::CHANNEL_ALPHA] = 0;
164 164
         }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      * @see RGBAColor::ERROR_INVALID_COLOR_COMPONENT
184 184
      * @see RGBAColor::ERROR_INVALID_PERCENTAGE_VALUE
185 185
      */
186
-    public static function createFromHEX(string $hex, string $name='') : RGBAColor
186
+    public static function createFromHEX(string $hex, string $name = '') : RGBAColor
187 187
     {
188 188
         return FormatsConverter::hex2color($hex, $name);
189 189
     }
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      * @param string $name
209 209
      * @return RGBAColor
210 210
      */
211
-    public static function createPercent(float $red, float $green, float $blue, float $alpha=0, string $name='') : RGBAColor
211
+    public static function createPercent(float $red, float $green, float $blue, float $alpha = 0, string $name = '') : RGBAColor
212 212
     {
213 213
         return new RGBAColor(
214 214
             ColorChannel::percent($red),
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
      * @param string $name
231 231
      * @return RGBAColor
232 232
      */
233
-    public static function createCSS(int $red, int $green, int $blue, float $alpha=0, string $name='') : RGBAColor
233
+    public static function createCSS(int $red, int $green, int $blue, float $alpha = 0, string $name = '') : RGBAColor
234 234
     {
235 235
         return self::create(
236 236
             ColorChannel::eightBit($red),
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
      * @param string $name
253 253
      * @return RGBAColor
254 254
      */
255
-    public static function create8Bit(int $red, int $green, int $blue, int $alpha=0, string $name='') : RGBAColor
255
+    public static function create8Bit(int $red, int $green, int $blue, int $alpha = 0, string $name = '') : RGBAColor
256 256
     {
257 257
         return self::create(
258 258
             ColorChannel::eightBit($red),
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      * @param string $name
276 276
      * @return RGBAColor
277 277
      */
278
-    public static function createGD(int $red, int $green, int $blue, int $alpha=0, string $name='') : RGBAColor
278
+    public static function createGD(int $red, int $green, int $blue, int $alpha = 0, string $name = '') : RGBAColor
279 279
     {
280 280
         return self::create(
281 281
             ColorChannel::eightBit($red),
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
         $color = imagecolorsforindex($img, $colorIndex);
298 298
 
299 299
         // it seems imagecolorsforindex() may return false (undocumented, unproven)
300
-        if(is_array($color)) {
300
+        if (is_array($color)) {
301 301
             return self::create(
302 302
                 ColorChannel::eightBit($color['red']),
303 303
                 ColorChannel::eightBit($color['green']),
Please login to merge, or discard this patch.
src/RGBAColor/FormatsConverter.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@  discard block
 block discarded – undo
40 40
     public static function color2HEX(RGBAColor $color) : string
41 41
     {
42 42
         $hex =
43
-            UnitsConverter::int2hex($color->getRed()->get8Bit()) .
44
-            UnitsConverter::int2hex($color->getGreen()->get8Bit()) .
43
+            UnitsConverter::int2hex($color->getRed()->get8Bit()).
44
+            UnitsConverter::int2hex($color->getGreen()->get8Bit()).
45 45
             UnitsConverter::int2hex($color->getBlue()->get8Bit());
46 46
 
47
-        if($color->hasTransparency())
47
+        if ($color->hasTransparency())
48 48
         {
49 49
             $hex .= UnitsConverter::int2hex($color->getAlpha()->get8Bit());
50 50
         }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public static function color2CSS(RGBAColor $color) : string
62 62
     {
63
-        if($color->hasTransparency())
63
+        if ($color->hasTransparency())
64 64
         {
65 65
             return sprintf(
66 66
                 'rgba(%s, %s, %s, %s)',
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      */
96 96
     public static function requireValidColorArray(array $color) : void
97 97
     {
98
-        if(self::isColorArray($color))
98
+        if (self::isColorArray($color))
99 99
         {
100 100
             return;
101 101
         }
@@ -127,9 +127,9 @@  discard block
 block discarded – undo
127 127
             RGBAColor::CHANNEL_BLUE
128 128
         );
129 129
 
130
-        foreach($keys as $key)
130
+        foreach ($keys as $key)
131 131
         {
132
-            if(!isset($color[$key]))
132
+            if (!isset($color[$key]))
133 133
             {
134 134
                 return false;
135 135
             }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public static function color2readable(RGBAColor $color) : string
150 150
     {
151
-        if($color->hasTransparency())
151
+        if ($color->hasTransparency())
152 152
         {
153 153
             return sprintf(
154 154
                 'RGBA(%s %s %s %s)',
@@ -191,9 +191,9 @@  discard block
 block discarded – undo
191 191
      * @throws ColorException
192 192
      * @see RGBAColor::ERROR_INVALID_HEX_LENGTH
193 193
      */
194
-    public static function hex2color(string $hex, string $name='') : RGBAColor
194
+    public static function hex2color(string $hex, string $name = '') : RGBAColor
195 195
     {
196
-        if(!isset(self::$hexParser))
196
+        if (!isset(self::$hexParser))
197 197
         {
198 198
             self::$hexParser = new HEXParser();
199 199
         }
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
     {
246 246
         // If one associative key is present, we assume
247 247
         // that the color array is already correct.
248
-        if(isset($color[RGBAColor::CHANNEL_RED]))
248
+        if (isset($color[RGBAColor::CHANNEL_RED]))
249 249
         {
250 250
             return $color;
251 251
         }
@@ -253,15 +253,15 @@  discard block
 block discarded – undo
253 253
         $values = array_values($color);
254 254
         $result = array();
255 255
 
256
-        foreach(self::$keys as $idx => $def)
256
+        foreach (self::$keys as $idx => $def)
257 257
         {
258
-            if(isset($values[$idx]))
258
+            if (isset($values[$idx]))
259 259
             {
260 260
                 $result[$def['key']] = $values[$idx];
261 261
                 continue;
262 262
             }
263 263
 
264
-            if(!$def['mandatory'])
264
+            if (!$def['mandatory'])
265 265
             {
266 266
                 continue;
267 267
             }
Please login to merge, or discard this patch.
src/RGBAColor.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
     {
118 118
         return (int)floor(
119 119
             (
120
-                ($this->getRed()->get8Bit()*2)
120
+                ($this->getRed()->get8Bit() * 2)
121 121
                 +
122 122
                 $this->getBlue()->get8Bit()
123 123
                 +
124
-                ($this->getGreen()->get8Bit()*3)
124
+                ($this->getGreen()->get8Bit() * 3)
125 125
             )
126 126
             /6
127 127
         );
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
      */
369 369
     private function requireValidComponent(string $name) : void
370 370
     {
371
-        if(in_array($name, self::COLOR_COMPONENTS))
371
+        if (in_array($name, self::COLOR_COMPONENTS))
372 372
         {
373 373
             return;
374 374
         }
Please login to merge, or discard this patch.
src/CSVHelper/Builder.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         return $this->setOption('separatorChar', $char);
47 47
     }
48 48
 
49
-    public function setTrailingNewline(bool $useNewline=true) : self
49
+    public function setTrailingNewline(bool $useNewline = true) : self
50 50
     {
51 51
         return $this->setOption('trailingNewline', $useNewline);
52 52
     }
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             $args = $args[0];
65 65
         }
66 66
 
67
-        $this->lines[] = '"' . implode('"'.$this->getOption('separatorChar').'"', $args) . '"';
67
+        $this->lines[] = '"'.implode('"'.$this->getOption('separatorChar').'"', $args).'"';
68 68
         
69 69
         return $this;
70 70
     }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     {
81 81
         $csv = implode(PHP_EOL, $this->lines);
82 82
 
83
-        if($this->getOption('trailingNewline')) {
83
+        if ($this->getOption('trailingNewline')) {
84 84
             $csv .= PHP_EOL;
85 85
         }
86 86
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     public function setOption(string $name, $value) : self
96 96
     {
97
-        if(!isset($this->options)) {
97
+        if (!isset($this->options)) {
98 98
             $this->options = $this->getDefaultOptions();
99 99
         }
100 100
         
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      */
109 109
     public function setOptions(array $options) : self
110 110
     {
111
-        foreach($options as $name => $value) {
111
+        foreach ($options as $name => $value) {
112 112
             $this->setOption($name, $value);
113 113
         }
114 114
         
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
      * @param mixed|NULL $default
121 121
      * @return mixed|NULL
122 122
      */
123
-    public function getOption(string $name, $default=null)
123
+    public function getOption(string $name, $default = null)
124 124
     {
125
-        if(!isset($this->options)) {
125
+        if (!isset($this->options)) {
126 126
             $this->options = $this->getDefaultOptions();
127 127
         }
128 128
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     
132 132
     public function hasOption(string $name) : bool
133 133
     {
134
-        if(!isset($this->options)) {
134
+        if (!isset($this->options)) {
135 135
             $this->options = $this->getDefaultOptions();
136 136
         }
137 137
         
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      */
144 144
     public function getOptions() : array
145 145
     {
146
-        if(!isset($this->options)) {
146
+        if (!isset($this->options)) {
147 147
             $this->options = $this->getDefaultOptions();
148 148
         }
149 149
         
Please login to merge, or discard this patch.
src/CSVHelper.php 2 patches
Indentation   +116 added lines, -116 removed lines patch added patch discarded remove patch
@@ -78,12 +78,12 @@  discard block
 block discarded – undo
78 78
         
79 79
     }
80 80
 
81
-   /**
82
-    * Creates and returns a new instance of the CSV builder which
83
-    * can be used to build CSV from scratch.
84
-    * 
85
-    * @return CSVHelper_Builder
86
-    */
81
+    /**
82
+     * Creates and returns a new instance of the CSV builder which
83
+     * can be used to build CSV from scratch.
84
+     * 
85
+     * @return CSVHelper_Builder
86
+     */
87 87
     public static function createBuilder() : CSVHelper_Builder
88 88
     {
89 89
         return new CSVHelper_Builder();
@@ -91,16 +91,16 @@  discard block
 block discarded – undo
91 91
 
92 92
 
93 93
 
94
-   /**
95
-    * Loads CSV data from a string. 
96
-    * 
97
-    * Note: Use the {@link hasErrors()} method to 
98
-    * check if the string could be parsed correctly
99
-    * afterwards.
100
-    * 
101
-    * @param string $string
102
-    * @return $this
103
-    */
94
+    /**
95
+     * Loads CSV data from a string. 
96
+     * 
97
+     * Note: Use the {@link hasErrors()} method to 
98
+     * check if the string could be parsed correctly
99
+     * afterwards.
100
+     * 
101
+     * @param string $string
102
+     * @return $this
103
+     */
104 104
     public function loadString(string $string) : self
105 105
     {
106 106
         // remove any UTF byte order marks that may still be present in the string
@@ -114,20 +114,20 @@  discard block
 block discarded – undo
114 114
         return $this;
115 115
     }
116 116
     
117
-   /**
118
-    * Loads CSV data from a file.
119
-    * 
120
-    * Note: Use the {@link hasErrors()} method to 
121
-    * check if the string could be parsed correctly
122
-    * afterwards.
123
-    * 
124
-    * @param string $file
125
-    * @throws FileHelper_Exception
126
-    * @return CSVHelper
127
-    * 
128
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
129
-    * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
130
-    */
117
+    /**
118
+     * Loads CSV data from a file.
119
+     * 
120
+     * Note: Use the {@link hasErrors()} method to 
121
+     * check if the string could be parsed correctly
122
+     * afterwards.
123
+     * 
124
+     * @param string $file
125
+     * @throws FileHelper_Exception
126
+     * @return CSVHelper
127
+     * 
128
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
129
+     * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
130
+     */
131 131
     public function loadFile(string $file) : self
132 132
     {
133 133
         $csv = FileHelper::readContents($file);
@@ -188,19 +188,19 @@  discard block
 block discarded – undo
188 188
         return $this->headersPosition === $position;
189 189
     }
190 190
     
191
-   /**
192
-    * Specifies where the headers are positioned in the
193
-    * CSV, or turns them off entirely. Use the class constants
194
-    * to ensure the value is correct.
195
-    * 
196
-    * @param string $position
197
-    * @throws CSVHelper_Exception
198
-    * @return $this
199
-    *
200
-    * @see CSVHelper::HEADERS_LEFT
201
-    * @see CSVHelper::HEADERS_TOP
202
-    * @see CSVHelper::HEADERS_NONE
203
-    */
191
+    /**
192
+     * Specifies where the headers are positioned in the
193
+     * CSV, or turns them off entirely. Use the class constants
194
+     * to ensure the value is correct.
195
+     * 
196
+     * @param string $position
197
+     * @throws CSVHelper_Exception
198
+     * @return $this
199
+     *
200
+     * @see CSVHelper::HEADERS_LEFT
201
+     * @see CSVHelper::HEADERS_TOP
202
+     * @see CSVHelper::HEADERS_NONE
203
+     */
204 204
     public function setHeadersPosition(string $position) : self
205 205
     {
206 206
         $validPositions = array(
@@ -227,13 +227,13 @@  discard block
 block discarded – undo
227 227
         return $this;
228 228
     }
229 229
     
230
-   /**
231
-    * Resets all internal data, allowing to start entirely anew
232
-    * with a new file, or to start building a new CSV file from
233
-    * scratch.
234
-    * 
235
-    * @return $this
236
-    */
230
+    /**
231
+     * Resets all internal data, allowing to start entirely anew
232
+     * with a new file, or to start building a new CSV file from
233
+     * scratch.
234
+     * 
235
+     * @return $this
236
+     */
237 237
     public function reset() : self
238 238
     {
239 239
         $this->data = array();
@@ -253,81 +253,81 @@  discard block
 block discarded – undo
253 253
         return $this->data;
254 254
     }
255 255
     
256
-   /**
257
-    * Retrieves the row at the specified index.
258
-    * If there is no data at the index, this will
259
-    * return an array populated with empty strings
260
-    * for all available columns.
261
-    * 
262
-    * Tip: Use the {@link rowExists()} method to check
263
-    * whether the specified row exists.
264
-    * 
265
-    * @param integer $index
266
-    * @return array<int,mixed>
267
-    * @see rowExists()
268
-    */
256
+    /**
257
+     * Retrieves the row at the specified index.
258
+     * If there is no data at the index, this will
259
+     * return an array populated with empty strings
260
+     * for all available columns.
261
+     * 
262
+     * Tip: Use the {@link rowExists()} method to check
263
+     * whether the specified row exists.
264
+     * 
265
+     * @param integer $index
266
+     * @return array<int,mixed>
267
+     * @see rowExists()
268
+     */
269 269
     public function getRow(int $index) : array
270 270
     {
271 271
         return $this->data[$index] ?? array_fill(0, $this->rowCount, '');
272 272
     }
273 273
     
274
-   /**
275
-    * Checks whether the specified row exists in the data set.
276
-    * @param integer $index
277
-    * @return boolean
278
-    */
274
+    /**
275
+     * Checks whether the specified row exists in the data set.
276
+     * @param integer $index
277
+     * @return boolean
278
+     */
279 279
     public function rowExists(int $index) : bool
280 280
     {
281 281
         return isset($this->data[$index]);
282 282
     }
283 283
     
284
-   /**
285
-    * Counts the amount of rows in the parsed CSV,
286
-    * excluding the headers if any, depending on 
287
-    * their position.
288
-    * 
289
-    * @return integer
290
-    */
284
+    /**
285
+     * Counts the amount of rows in the parsed CSV,
286
+     * excluding the headers if any, depending on 
287
+     * their position.
288
+     * 
289
+     * @return integer
290
+     */
291 291
     public function countRows() : int
292 292
     {
293 293
         return $this->rowCount;
294 294
     }
295 295
     
296
-   /**
297
-    * Counts the amount of rows in the parsed CSV, 
298
-    * excluding the headers if any, depending on
299
-    * their position.
300
-    * 
301
-    * @return integer
302
-    */
296
+    /**
297
+     * Counts the amount of rows in the parsed CSV, 
298
+     * excluding the headers if any, depending on
299
+     * their position.
300
+     * 
301
+     * @return integer
302
+     */
303 303
     public function countColumns() : int
304 304
     {
305 305
         return $this->columnCount;
306 306
     }
307 307
     
308
-   /**
309
-    * Retrieves the headers, if any. Specify the position of the
310
-    * headers first to ensure this works correctly.
311
-    * 
312
-    * @return string[] Indexed array with header names.
313
-    */
308
+    /**
309
+     * Retrieves the headers, if any. Specify the position of the
310
+     * headers first to ensure this works correctly.
311
+     * 
312
+     * @return string[] Indexed array with header names.
313
+     */
314 314
     public function getHeaders() : array
315 315
     {
316 316
         return $this->headers;
317 317
     }
318 318
     
319
-   /**
320
-    * Retrieves the column at the specified index. If there
321
-    * is no column at the index, this returns an array
322
-    * populated with empty strings.
323
-    * 
324
-    * Tip: Use the {@link columnExists()} method to check
325
-    * whether a column exists.
326
-    * 
327
-    * @param integer $index
328
-    * @return string[]
329
-    * @see columnExists()
330
-    */
319
+    /**
320
+     * Retrieves the column at the specified index. If there
321
+     * is no column at the index, this returns an array
322
+     * populated with empty strings.
323
+     * 
324
+     * Tip: Use the {@link columnExists()} method to check
325
+     * whether a column exists.
326
+     * 
327
+     * @param integer $index
328
+     * @return string[]
329
+     * @see columnExists()
330
+     */
331 331
     public function getColumn(int $index) : array
332 332
     {
333 333
         $data = array();
@@ -342,11 +342,11 @@  discard block
 block discarded – undo
342 342
         return $data;
343 343
     }
344 344
     
345
-   /**
346
-    * Checks whether the specified column exists in the data set.
347
-    * @param integer $index
348
-    * @return boolean
349
-    */
345
+    /**
346
+     * Checks whether the specified column exists in the data set.
347
+     * @param integer $index
348
+     * @return boolean
349
+     */
350 350
     public function columnExists(int $index) : bool
351 351
     {
352 352
         return $index < $this->columnCount;
@@ -406,22 +406,22 @@  discard block
 block discarded – undo
406 406
         }
407 407
     }
408 408
     
409
-   /**
410
-    * Checks whether any errors have been encountered
411
-    * while parsing the CSV.
412
-    * 
413
-    * @return boolean
414
-    * @see getErrorMessages()
415
-    */
409
+    /**
410
+     * Checks whether any errors have been encountered
411
+     * while parsing the CSV.
412
+     * 
413
+     * @return boolean
414
+     * @see getErrorMessages()
415
+     */
416 416
     public function hasErrors() : bool
417 417
     {
418 418
         return !empty($this->errors);
419 419
     }
420 420
     
421
-   /**
422
-    * Retrieves all error messages.
423
-    * @return string[]
424
-    */
421
+    /**
422
+     * Retrieves all error messages.
423
+     * @return string[]
424
+     */
425 425
     public function getErrorMessages() : array
426 426
     {
427 427
         return $this->errors;
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             self::HEADERS_TOP
210 210
         );
211 211
         
212
-        if(!in_array($position, $validPositions)) {
212
+        if (!in_array($position, $validPositions)) {
213 213
             throw new CSVHelper_Exception(
214 214
                 'Invalid headers position',
215 215
                 sprintf(
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
     {
333 333
         $data = array();
334 334
 
335
-        for($i=0; $i < $this->rowCount; $i++)
335
+        for ($i = 0; $i < $this->rowCount; $i++)
336 336
         {
337 337
             $value = $this->data[$i][$index] ?? '';
338 338
 
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
     {
357 357
         $this->reset();
358 358
         
359
-        if(empty(trim($this->csv))) {
359
+        if (empty(trim($this->csv))) {
360 360
             $this->addError('Tried to parse an empty CSV string.');
361 361
             return;
362 362
         }
@@ -368,14 +368,14 @@  discard block
 block discarded – undo
368 368
         
369 369
         $parser = self::createParser();
370 370
 
371
-        if(!$parser->parse($this->csv)) {
371
+        if (!$parser->parse($this->csv)) {
372 372
             $this->addError('The CSV string could not be parsed.');
373 373
             return;
374 374
         }
375 375
 
376 376
         $result = $parser->data;
377 377
 
378
-        switch($this->headersPosition)
378
+        switch ($this->headersPosition)
379 379
         {
380 380
             case self::HEADERS_TOP:
381 381
                 $this->headers = array_shift($result);
@@ -398,9 +398,9 @@  discard block
 block discarded – undo
398 398
         $this->data = $result;
399 399
         $this->rowCount = count($this->data);
400 400
         
401
-        for($i=0; $i < $this->rowCount; $i++) {
401
+        for ($i = 0; $i < $this->rowCount; $i++) {
402 402
             $amount = count($this->data[$i]);
403
-            if($amount > $this->columnCount) {
403
+            if ($amount > $this->columnCount) {
404 404
                 $this->columnCount = $amount;
405 405
             }
406 406
         }
@@ -443,8 +443,8 @@  discard block
 block discarded – undo
443 443
             ',,' => ','
444 444
         );
445 445
         
446
-        foreach($search as $char => $separator) {
447
-            if(strpos($this->csv, $char) !== false) {
446
+        foreach ($search as $char => $separator) {
447
+            if (strpos($this->csv, $char) !== false) {
448 448
                 return $separator;
449 449
             }
450 450
         }
@@ -458,11 +458,11 @@  discard block
 block discarded – undo
458 458
      * @param string $delimiter
459 459
      * @return Csv
460 460
      */
461
-    public static function createParser(string $delimiter=self::DELIMITER_AUTO) : Csv
461
+    public static function createParser(string $delimiter = self::DELIMITER_AUTO) : Csv
462 462
     {
463 463
         $csv = new Csv();
464 464
 
465
-        if($delimiter !== self::DELIMITER_AUTO) {
465
+        if ($delimiter !== self::DELIMITER_AUTO) {
466 466
             $csv->delimiter = $delimiter;
467 467
         }
468 468
 
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
 
494 494
         $result = $parser->auto($path);
495 495
 
496
-        if(is_string($result)) {
496
+        if (is_string($result)) {
497 497
             return $parser->data;
498 498
         }
499 499
 
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
         $parser = self::createParser();
527 527
         $result = $parser->parse($string);
528 528
 
529
-        if($result === true) {
529
+        if ($result === true) {
530 530
             return $parser->data;
531 531
         }
532 532
 
Please login to merge, or discard this patch.
src/URLInfo/URIConnectionTester.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -43,13 +43,13 @@  discard block
 block discarded – undo
43 43
         );
44 44
     }
45 45
     
46
-   /**
47
-    * Whether to verify the host's SSL certificate, in
48
-    * case of a https connection.
49
-    * 
50
-    * @param bool $verifySSL
51
-    * @return URIConnectionTester
52
-    */
46
+    /**
47
+     * Whether to verify the host's SSL certificate, in
48
+     * case of a https connection.
49
+     * 
50
+     * @param bool $verifySSL
51
+     * @return URIConnectionTester
52
+     */
53 53
     public function setVerifySSL(bool $verifySSL=true) : URIConnectionTester
54 54
     {
55 55
         $this->setOption('verify-ssl', $verifySSL);
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
         return $this->getIntOption('timeout');
84 84
     }
85 85
     
86
-   /**
87
-    * @param resource|CurlHandle $ch
88
-    */
86
+    /**
87
+     * @param resource|CurlHandle $ch
88
+     */
89 89
     private function configureOptions($ch) : void
90 90
     {
91 91
         if($this->isVerboseModeEnabled())
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     * @param bool $verifySSL
51 51
     * @return URIConnectionTester
52 52
     */
53
-    public function setVerifySSL(bool $verifySSL=true) : URIConnectionTester
53
+    public function setVerifySSL(bool $verifySSL = true) : URIConnectionTester
54 54
     {
55 55
         $this->setOption('verify-ssl', $verifySSL);
56 56
             return $this;
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         return $this->getBoolOption('verify-ssl');
62 62
     }
63 63
     
64
-    public function setVerboseMode(bool $enabled=true) : URIConnectionTester
64
+    public function setVerboseMode(bool $enabled = true) : URIConnectionTester
65 65
     {
66 66
         $this->setOption('curl-verbose', $enabled);
67 67
         return $this;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     */
89 89
     private function configureOptions($ch) : void
90 90
     {
91
-        if($this->isVerboseModeEnabled())
91
+        if ($this->isVerboseModeEnabled())
92 92
         {
93 93
             curl_setopt($ch, CURLOPT_VERBOSE, true);
94 94
         }
@@ -98,13 +98,13 @@  discard block
 block discarded – undo
98 98
         curl_setopt($ch, CURLOPT_TIMEOUT, $this->getTimeout());
99 99
         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
100 100
         
101
-        if(!$this->isVerifySSLEnabled())
101
+        if (!$this->isVerifySSLEnabled())
102 102
         {
103 103
             curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
104 104
             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
105 105
         }
106 106
         
107
-        if($this->url->hasUsername())
107
+        if ($this->url->hasUsername())
108 108
         {
109 109
             curl_setopt($ch, CURLOPT_USERNAME, $this->url->getUsername());
110 110
             curl_setopt($ch, CURLOPT_PASSWORD, $this->url->getPassword());
Please login to merge, or discard this patch.
src/PHP8Shims/CurlHandleShim.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 declare(strict_types=1);
8 8
 
9
-if(!class_exists('CurlHandle'))
9
+if (!class_exists('CurlHandle'))
10 10
 {
11 11
     /**
12 12
      * Shim to support PHPStan analysis on PHP7, while
Please login to merge, or discard this patch.
src/PHP8Shims/GDImageShim.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 declare(strict_types=1);
8 8
 
9
-if(!class_exists('GdImage'))
9
+if (!class_exists('GdImage'))
10 10
 {
11 11
     /**
12 12
      * Shim to support PHPStan analysis on PHP7, while
Please login to merge, or discard this patch.