Passed
Push — master ( 8951af...41e544 )
by Sebastian
02:53
created
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 1 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 1 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/RequestHelper.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 
208 208
         $output = curl_exec($ch);
209 209
 
210
-        if(isset($this->logfilePointer))
210
+        if (isset($this->logfilePointer))
211 211
         {
212 212
             fclose($this->logfilePointer);
213 213
         }
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         // CURL will complain about an empty response when the 
220 220
         // server sends a 100-continue code. That should not be
221 221
         // regarded as an error.
222
-        if($output === false && $this->response->getCode() !== 100)
222
+        if ($output === false && $this->response->getCode() !== 100)
223 223
         {
224 224
             $curlCode = curl_errno($ch);
225 225
             
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
     {
262 262
         $ch = curl_init();
263 263
 
264
-        if($ch instanceof CurlHandle || is_resource($ch))
264
+        if ($ch instanceof CurlHandle || is_resource($ch))
265 265
         {
266 266
             return $ch;
267 267
         }
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
         $ch = self::createCURL();
290 290
 
291 291
         $this->setHeader('Content-Length', (string)$this->boundaries->getContentLength());
292
-        $this->setHeader('Content-Type', 'multipart/form-data; boundary=' . $this->mimeBoundary);
292
+        $this->setHeader('Content-Type', 'multipart/form-data; boundary='.$this->mimeBoundary);
293 293
 
294 294
         curl_setopt($ch, CURLOPT_POST, true);
295 295
         curl_setopt($ch, CURLOPT_URL, $url->getNormalizedWithoutAuth());
@@ -302,18 +302,18 @@  discard block
 block discarded – undo
302 302
         
303 303
         $loggingEnabled = $this->configureLogging($ch);
304 304
         
305
-        if(!$loggingEnabled) 
305
+        if (!$loggingEnabled) 
306 306
         {
307 307
             curl_setopt($ch, CURLINFO_HEADER_OUT, true);
308 308
         }
309 309
         
310
-        if($this->verifySSL)
310
+        if ($this->verifySSL)
311 311
         {
312 312
             curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
313 313
             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
314 314
         }
315 315
         
316
-        if($url->hasUsername())
316
+        if ($url->hasUsername())
317 317
         {
318 318
             curl_setopt($ch, CURLOPT_USERNAME, $url->getUsername());
319 319
             curl_setopt($ch, CURLOPT_PASSWORD, $url->getPassword());
@@ -329,14 +329,14 @@  discard block
 block discarded – undo
329 329
      */
330 330
     protected function configureLogging($ch) : bool
331 331
     {
332
-        if(empty($this->logfile))
332
+        if (empty($this->logfile))
333 333
         {
334 334
             return false;
335 335
         }
336 336
         
337 337
         $res = fopen($this->logfile, 'wb+');
338 338
         
339
-        if($res === false)
339
+        if ($res === false)
340 340
         {
341 341
             throw new RequestHelper_Exception(
342 342
                 'Cannot open logfile for writing.',
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
         
367 367
         $this->setHeader('Expect', '');
368 368
         
369
-        foreach($this->headers as $name => $value) {
369
+        foreach ($this->headers as $name => $value) {
370 370
             $result[] = $name.': '.$value;
371 371
         }
372 372
         
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
     {
384 384
         $response = $this->getResponse();
385 385
         
386
-        if($response !== null) {
386
+        if ($response !== null) {
387 387
             return $response->getHeaders();
388 388
         }
389 389
 
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.
src/FileHelper/PathInfoInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 interface PathInfoInterface extends Interface_Stringable
26 26
 {
27 27
     public function getName() : string;
28
-    public function getExtension(bool $lowercase=true) : string;
28
+    public function getExtension(bool $lowercase = true) : string;
29 29
     public function getPath() : string;
30 30
     public function getFolderPath() : string;
31 31
     public function exists() : bool;
Please login to merge, or discard this patch.