Passed
Push — master ( 8eb6c3...8951af )
by Sebastian
08:56
created
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/PresetsManager.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     private function init() : void
64 64
     {
65
-        if(self::$initialized === true)
65
+        if (self::$initialized === true)
66 66
         {
67 67
             return;
68 68
         }
@@ -89,16 +89,16 @@  discard block
 block discarded – undo
89 89
     {
90 90
         $preset = null;
91 91
 
92
-        if(isset($this->customPresets[$name]))
92
+        if (isset($this->customPresets[$name]))
93 93
         {
94 94
             $preset = $this->customPresets[$name];
95 95
         }
96
-        else if(isset(self::$globalPresets[$name]))
96
+        else if (isset(self::$globalPresets[$name]))
97 97
         {
98 98
             $preset = self::$globalPresets[$name];
99 99
         }
100 100
 
101
-        if($preset !== null)
101
+        if ($preset !== null)
102 102
         {
103 103
             return ColorFactory::create(
104 104
                 ColorChannel::eightBit($preset[RGBAColor::CHANNEL_RED]),
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     {
133 133
         $this->requireNotGlobal($name);
134 134
 
135
-        if(!isset(self::$globalPresets[$name]))
135
+        if (!isset(self::$globalPresets[$name]))
136 136
         {
137 137
             self::$globalPresets[$name] = array(
138 138
                 RGBAColor::CHANNEL_RED => $red,
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         );
155 155
     }
156 156
 
157
-    public function registerPreset(string $name, int $red, int $green, int $blue, int $alpha=255) : PresetsManager
157
+    public function registerPreset(string $name, int $red, int $green, int $blue, int $alpha = 255) : PresetsManager
158 158
     {
159 159
         $this->requireNotGlobal($name);
160 160
 
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
 
171 171
     private function requireNotGlobal(string $name) : void
172 172
     {
173
-        if(!isset(self::$globalPresets[$name]))
173
+        if (!isset(self::$globalPresets[$name]))
174 174
         {
175 175
             return;
176 176
         }
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 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.