Test Failed
Push — master ( c6159a...ad222e )
by Sebastian
03:11
created
src/ConvertHelper/DateInterval.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         
69 69
         $interval = $d2->diff($d1);
70 70
         
71
-        if(!$interval instanceof DateInterval)
71
+        if (!$interval instanceof DateInterval)
72 72
         {
73 73
             throw new ConvertHelper_Exception(
74 74
                 'Cannot create interval',
@@ -187,24 +187,24 @@  discard block
 block discarded – undo
187 187
      * @see ConvertHelper::INTERVAL_HOURS
188 188
      * @see ConvertHelper::INTERVAL_DAYS
189 189
      */
190
-    public static function toTotal(DateInterval $interval, string $unit=ConvertHelper::INTERVAL_SECONDS) : int
190
+    public static function toTotal(DateInterval $interval, string $unit = ConvertHelper::INTERVAL_SECONDS) : int
191 191
     {
192 192
         $total = (int)$interval->format('%a');
193 193
         if ($unit == ConvertHelper::INTERVAL_DAYS) {
194 194
             return $total;
195 195
         }
196 196
 
197
-        $total = ($total * 24) + ((int)$interval->h );
197
+        $total = ($total * 24) + ((int)$interval->h);
198 198
         if ($unit == ConvertHelper::INTERVAL_HOURS) {
199 199
             return $total;
200 200
         }
201 201
 
202
-        $total = ($total * 60) + ((int)$interval->i );
202
+        $total = ($total * 60) + ((int)$interval->i);
203 203
         if ($unit == ConvertHelper::INTERVAL_MINUTES) {
204 204
             return $total;
205 205
         }
206 206
 
207
-        $total = ($total * 60) + ((int)$interval->s );
207
+        $total = ($total * 60) + ((int)$interval->s);
208 208
         if ($unit == ConvertHelper::INTERVAL_SECONDS) {
209 209
             return $total;
210 210
         }
Please login to merge, or discard this patch.
src/ConvertHelper/Date.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -43,13 +43,13 @@  discard block
 block discarded – undo
43 43
      * @param bool $short
44 44
      * @return string|NULL
45 45
      */
46
-    public static function toDayName(DateTime $date, bool $short=false) : ?string
46
+    public static function toDayName(DateTime $date, bool $short = false) : ?string
47 47
     {
48 48
         $day = $date->format('l');
49 49
         $invariant = self::getDayNamesInvariant();
50 50
 
51 51
         $idx = array_search($day, $invariant);
52
-        if($idx !== false) {
52
+        if ($idx !== false) {
53 53
             $localized = self::getDayNames($short);
54 54
             return $localized[$idx];
55 55
         }
@@ -72,11 +72,11 @@  discard block
 block discarded – undo
72 72
      * @param bool $short
73 73
      * @return string[]
74 74
      */
75
-    public static function getDayNames(bool $short=false) : array
75
+    public static function getDayNames(bool $short = false) : array
76 76
     {
77 77
         self::initDays();
78 78
 
79
-        if($short) {
79
+        if ($short) {
80 80
             return self::$daysShort;
81 81
         }
82 82
 
@@ -102,13 +102,13 @@  discard block
 block discarded – undo
102 102
     public static function toListLabel(DateTime $date, bool $includeTime = false, bool $shortMonth = false) : string
103 103
     {
104 104
         $today = new DateTime();
105
-        if($date->format('d.m.Y') === $today->format('d.m.Y'))
105
+        if ($date->format('d.m.Y') === $today->format('d.m.Y'))
106 106
         {
107 107
             $label = t('Today');
108 108
         }
109 109
         else
110 110
         {
111
-            $label = $date->format('d') . '. ' . self::month2string((int)$date->format('m'), $shortMonth) . ' ';
111
+            $label = $date->format('d').'. '.self::month2string((int)$date->format('m'), $shortMonth).' ';
112 112
 
113 113
             if ($date->format('Y') != date('Y'))
114 114
             {
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 
214 214
     private static function initDays() : void
215 215
     {
216
-        if(!empty(self::$daysShort))
216
+        if (!empty(self::$daysShort))
217 217
         {
218 218
             return;
219 219
         }
Please login to merge, or discard this patch.
src/ConvertHelper/URLFinder.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      * @param bool $enabled
105 105
      * @return $this
106 106
      */
107
-    public function enableNormalizing(bool $enabled=true) : ConvertHelper_URLFinder
107
+    public function enableNormalizing(bool $enabled = true) : ConvertHelper_URLFinder
108 108
     {
109 109
         $this->setOption('normalize', $enabled);
110 110
         return $this;
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
     * @param bool $enabled
117 117
     * @return $this
118 118
     */
119
-    public function enableSorting(bool $enabled=true) : ConvertHelper_URLFinder
119
+    public function enableSorting(bool $enabled = true) : ConvertHelper_URLFinder
120 120
     {
121 121
         $this->setOption('sorting', $enabled);
122 122
         return $this;
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     * @param bool $include
131 131
     * @return ConvertHelper_URLFinder
132 132
     */
133
-    public function includeEmails(bool $include=true) : ConvertHelper_URLFinder
133
+    public function includeEmails(bool $include = true) : ConvertHelper_URLFinder
134 134
     {
135 135
         $this->setOption('include-emails', $include);
136 136
         return $this;
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     * @param bool $omit
143 143
     * @return ConvertHelper_URLFinder
144 144
     */
145
-    public function omitMailto(bool $omit=true) : ConvertHelper_URLFinder
145
+    public function omitMailto(bool $omit = true) : ConvertHelper_URLFinder
146 146
     {
147 147
         $this->setOption('omit-mailto', $omit);
148 148
         return $this;
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         {
170 170
             $line = $this->analyzeLine($line);
171 171
 
172
-            if($line !== null) {
172
+            if ($line !== null) {
173 173
                 $keep[] = $line;
174 174
             }
175 175
         }
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
         $line = trim($line, '.');
191 191
 
192 192
         // Handle detecting an URI scheme
193
-        if(strstr($line, ':') !== false)
193
+        if (strstr($line, ':') !== false)
194 194
         {
195 195
             $scheme = URLInfo_Schemes::detectScheme($line);
196 196
 
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         // detect are email addresses and domain names.
205 205
 
206 206
         // No dot? Then it's certainly not a domain name.
207
-        if(strstr($line, '.') === false) {
207
+        if (strstr($line, '.') === false) {
208 208
             return null;
209 209
         }
210 210
 
@@ -222,10 +222,10 @@  discard block
 block discarded – undo
222 222
     {
223 223
         $subject = stripslashes($subject);
224 224
 
225
-        foreach($this->detectors as $detector)
225
+        foreach ($this->detectors as $detector)
226 226
         {
227 227
             // Avoid processing the string if it is not needed.
228
-            if($detector->getRunPosition() !== ConvertHelper_URLFinder_Detector::RUN_BEFORE || !$detector->isValidFor($subject)) {
228
+            if ($detector->getRunPosition() !== ConvertHelper_URLFinder_Detector::RUN_BEFORE || !$detector->isValidFor($subject)) {
229 229
                 continue;
230 230
             }
231 231
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
     {
247 247
         $detector = new $className();
248 248
 
249
-        if($detector instanceof ConvertHelper_URLFinder_Detector)
249
+        if ($detector instanceof ConvertHelper_URLFinder_Detector)
250 250
         {
251 251
             return $detector;
252 252
         }
@@ -273,12 +273,12 @@  discard block
 block discarded – undo
273 273
 
274 274
         $result = $this->getItemsAsString($this->urls);
275 275
 
276
-        if($this->getBoolOption('include-emails'))
276
+        if ($this->getBoolOption('include-emails'))
277 277
         {
278 278
             $result = array_merge($result, $this->getEmails());
279 279
         }
280 280
 
281
-        if($this->getBoolOption('sorting'))
281
+        if ($this->getBoolOption('sorting'))
282 282
         {
283 283
             usort($result, function(string $a, string $b) {
284 284
                 return strnatcasecmp($a, $b);
@@ -298,12 +298,12 @@  discard block
 block discarded – undo
298 298
 
299 299
         $result = array();
300 300
 
301
-        foreach($collection as $url => $info) {
302
-            if($normalize) {
301
+        foreach ($collection as $url => $info) {
302
+            if ($normalize) {
303 303
                 $url = $info->getNormalized();
304 304
             }
305 305
 
306
-            if(!in_array($url, $result)) {
306
+            if (!in_array($url, $result)) {
307 307
                 $result[] = $url;
308 308
             }
309 309
         }
@@ -320,9 +320,9 @@  discard block
 block discarded – undo
320 320
      */
321 321
     private function initDetectors() : void
322 322
     {
323
-        foreach($this->enabledDetectorClasses as $className => $enabled)
323
+        foreach ($this->enabledDetectorClasses as $className => $enabled)
324 324
         {
325
-            if($enabled) {
325
+            if ($enabled) {
326 326
                 $this->detectors[] = $this->createDetector($className);
327 327
             }
328 328
         }
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
      */
338 338
     private function parse() : void
339 339
     {
340
-        if($this->parsed) {
340
+        if ($this->parsed) {
341 341
             return;
342 342
         }
343 343
 
@@ -348,11 +348,11 @@  discard block
 block discarded – undo
348 348
 
349 349
         unset($this->subject);
350 350
 
351
-        foreach($this->matches as $match)
351
+        foreach ($this->matches as $match)
352 352
         {
353 353
             $info = parseURL($match);
354 354
 
355
-            if($info->isEmail())
355
+            if ($info->isEmail())
356 356
             {
357 357
                 $this->emails[$this->filterEmailAddress($match)] = $info;
358 358
                 continue;
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
      * @param bool $enable
369 369
      * @return $this
370 370
      */
371
-    public function enableHTMLAttributes(bool $enable=true) : ConvertHelper_URLFinder
371
+    public function enableHTMLAttributes(bool $enable = true) : ConvertHelper_URLFinder
372 372
     {
373 373
         $this->enabledDetectorClasses[ConvertHelper_URLFinder_Detector_HTMLAttributes::class] = $enable;
374 374
         return $this;
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
      */
384 384
     private function filterEmailAddress(string $email) : string
385 385
     {
386
-        if(stristr($email, 'mailto:') === false) {
386
+        if (stristr($email, 'mailto:') === false) {
387 387
             $email = 'mailto:'.$email;
388 388
         }
389 389
 
@@ -405,14 +405,14 @@  discard block
 block discarded – undo
405 405
         foreach ($lines as $line)
406 406
         {
407 407
             $scheme = URLInfo_Schemes::detectScheme($line);
408
-            if($scheme !== null) {
408
+            if ($scheme !== null) {
409 409
                 $this->matches[] = $line;
410 410
                 continue;
411 411
             }
412 412
 
413 413
             $extension = $this->detectDomainExtension($line);
414 414
 
415
-            if($domains->nameExists($extension)) {
415
+            if ($domains->nameExists($extension)) {
416 416
                 $this->matches[] = $line;
417 417
             }
418 418
         }
@@ -431,9 +431,9 @@  discard block
 block discarded – undo
431 431
 
432 432
         $subject = str_replace($remove, ' ', $subject);
433 433
 
434
-        foreach($this->detectors as $detector)
434
+        foreach ($this->detectors as $detector)
435 435
         {
436
-            if($detector->getRunPosition() !== ConvertHelper_URLFinder_Detector::RUN_AFTER || !$detector->isValidFor($subject)) {
436
+            if ($detector->getRunPosition() !== ConvertHelper_URLFinder_Detector::RUN_AFTER || !$detector->isValidFor($subject)) {
437 437
                 continue;
438 438
             }
439 439
 
@@ -456,8 +456,8 @@  discard block
 block discarded – undo
456 456
         $boundaries = array('/', '?');
457 457
 
458 458
         // Remove the path or query parts to access the domain extension only
459
-        foreach($boundaries as $boundary) {
460
-            if(strstr($url, $boundary)) {
459
+        foreach ($boundaries as $boundary) {
460
+            if (strstr($url, $boundary)) {
461 461
                 $parts = explode($boundary, $url);
462 462
                 $url = array_shift($parts);
463 463
                 break;
@@ -482,16 +482,16 @@  discard block
 block discarded – undo
482 482
 
483 483
         $result = $this->getItemsAsString($this->emails);
484 484
 
485
-        if($this->getBoolOption('omit-mailto')) {
485
+        if ($this->getBoolOption('omit-mailto')) {
486 486
             $keep = array();
487
-            foreach($result as $email) {
487
+            foreach ($result as $email) {
488 488
                 $keep[] = str_replace('mailto:', '', $email);
489 489
             }
490 490
 
491 491
             $result = $keep;
492 492
         }
493 493
 
494
-        if($this->getBoolOption('sorting'))
494
+        if ($this->getBoolOption('sorting'))
495 495
         {
496 496
             usort($result, function(string $a, string $b) {
497 497
                 return strnatcasecmp($a, $b);
@@ -513,16 +513,16 @@  discard block
 block discarded – undo
513 513
         $result = array();
514 514
         $normalize = $this->getBoolOption('normalize');
515 515
 
516
-        foreach($this->urls as $url => $info)
516
+        foreach ($this->urls as $url => $info)
517 517
         {
518
-            if($normalize) {
518
+            if ($normalize) {
519 519
                 $url = $info->getNormalized();
520 520
             }
521 521
 
522 522
             $result[$url] = $info;
523 523
         }
524 524
 
525
-        if($this->getBoolOption('sorting'))
525
+        if ($this->getBoolOption('sorting'))
526 526
         {
527 527
             ksort($result);
528 528
         }
Please login to merge, or discard this patch.
src/ConvertHelper/Array.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
      */
16 16
     public static function removeKeys(array &$sourceArray, array $keys) : void
17 17
     {
18
-        foreach($keys as $key)
18
+        foreach ($keys as $key)
19 19
         {
20
-            if(array_key_exists($key, $sourceArray)) {
20
+            if (array_key_exists($key, $sourceArray)) {
21 21
                 unset($sourceArray[$key]);
22 22
             }
23 23
         }
@@ -31,18 +31,18 @@  discard block
 block discarded – undo
31 31
      * @param bool $keepKeys Whether to maintain index association
32 32
      * @return array<number|string,mixed>
33 33
      */
34
-    public static function removeValues(array $sourceArray, array $values, bool $keepKeys=false) : array
34
+    public static function removeValues(array $sourceArray, array $values, bool $keepKeys = false) : array
35 35
     {
36 36
         $result = array();
37 37
         $values = array_values($values);
38 38
 
39
-        foreach($sourceArray as $key => $value)
39
+        foreach ($sourceArray as $key => $value)
40 40
         {
41
-            if(in_array($value, $values, true)) {
41
+            if (in_array($value, $values, true)) {
42 42
                 continue;
43 43
             }
44 44
 
45
-            if($keepKeys) {
45
+            if ($keepKeys) {
46 46
                 $result[$key] = $value;
47 47
                 continue;
48 48
             }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     public static function toStyleString(array $subject) : string
76 76
     {
77 77
         $tokens = array();
78
-        foreach($subject as $name => $value) {
78
+        foreach ($subject as $name => $value) {
79 79
             $tokens[] = $name.':'.strval($value);
80 80
         }
81 81
 
@@ -104,18 +104,18 @@  discard block
 block discarded – undo
104 104
     public static function toAttributeString(array $array) : string
105 105
     {
106 106
         $tokens = array();
107
-        foreach($array as $attr => $value)
107
+        foreach ($array as $attr => $value)
108 108
         {
109 109
             $value = strval($value);
110 110
 
111
-            if($value === '') {
111
+            if ($value === '') {
112 112
                 continue;
113 113
             }
114 114
 
115 115
             $tokens[] = $attr.'="'.htmlspecialchars($value, ENT_QUOTES, 'UTF-8').'"';
116 116
         }
117 117
 
118
-        if(empty($tokens)) {
118
+        if (empty($tokens)) {
119 119
             return '';
120 120
         }
121 121
 
@@ -136,17 +136,17 @@  discard block
 block discarded – undo
136 136
      */
137 137
     public static function implodeWithAnd(array $list, string $sep = ', ', string $conjunction = '') : string
138 138
     {
139
-        if(empty($list)) {
139
+        if (empty($list)) {
140 140
             return '';
141 141
         }
142 142
 
143
-        if(empty($conjunction)) {
143
+        if (empty($conjunction)) {
144 144
             $conjunction = ' '.t('and').' ';
145 145
         }
146 146
 
147 147
         $last = array_pop($list);
148
-        if($list) {
149
-            return implode($sep, $list) . $conjunction . $last;
148
+        if ($list) {
149
+            return implode($sep, $list).$conjunction.$last;
150 150
         }
151 151
 
152 152
         return $last;
Please login to merge, or discard this patch.
src/OutputBuffering.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         self::$stack[] = 1;
70 70
 
71
-        if(ob_start() === true) {
71
+        if (ob_start() === true) {
72 72
             return;
73 73
         }
74 74
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     {
91 91
         self::_stop();
92 92
 
93
-        if(ob_end_clean() !== false)
93
+        if (ob_end_clean() !== false)
94 94
         {
95 95
             return;
96 96
         }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     private static function _stop() : void
109 109
     {
110
-        if(empty(self::$stack))
110
+        if (empty(self::$stack))
111 111
         {
112 112
             throw new OutputBuffering_Exception(
113 113
                 'Output buffering is not active',
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     {
131 131
         self::_stop();
132 132
 
133
-        if(ob_end_flush() !== false)
133
+        if (ob_end_flush() !== false)
134 134
         {
135 135
             return;
136 136
         }
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 
159 159
         $content = ob_get_clean();
160 160
 
161
-        if($content !== false)
161
+        if ($content !== false)
162 162
         {
163 163
             return $content;
164 164
         }
Please login to merge, or discard this patch.
src/ImageHelper.php 1 patch
Spacing   +98 added lines, -98 removed lines patch added patch discarded remove patch
@@ -134,10 +134,10 @@  discard block
 block discarded – undo
134 134
      * @throws ImageHelper_Exception
135 135
      * @see ImageHelper::ERROR_GD_LIBRARY_NOT_INSTALLED
136 136
      */
137
-    public function __construct(?string $sourceFile=null, $resource=null, ?string $type=null)
137
+    public function __construct(?string $sourceFile = null, $resource = null, ?string $type = null)
138 138
     {
139 139
         // ensure that the GD library is installed
140
-        if(!function_exists('imagecreate')) 
140
+        if (!function_exists('imagecreate')) 
141 141
         {
142 142
             throw new ImageHelper_Exception(
143 143
                 'The PHP GD extension is not installed or not enabled.',
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
             );
147 147
         }
148 148
         
149
-        if(is_resource($resource)) 
149
+        if (is_resource($resource)) 
150 150
         {
151 151
             $this->sourceImage = $resource;
152 152
             $this->type = $type;
@@ -170,21 +170,21 @@  discard block
 block discarded – undo
170 170
             if (is_null($this->type)) {
171 171
                 throw new ImageHelper_Exception(
172 172
                     'Error opening image',
173
-                    'Not a valid supported image type for image ' . $this->file,
173
+                    'Not a valid supported image type for image '.$this->file,
174 174
                     self::ERROR_UNSUPPORTED_IMAGE_TYPE
175 175
                 );
176 176
             }
177 177
 
178 178
             $this->info = self::getImageSize($this->file);
179 179
 
180
-            if(!$this->isVector()) 
180
+            if (!$this->isVector()) 
181 181
             {
182
-                $method = 'imagecreatefrom' . $this->type;
182
+                $method = 'imagecreatefrom'.$this->type;
183 183
                 $this->sourceImage = $method($this->file);
184 184
                 if (!$this->sourceImage) {
185 185
                     throw new ImageHelper_Exception(
186 186
                         'Error creating new image',
187
-                        $method . ' failed',
187
+                        $method.' failed',
188 188
                         self::ERROR_FAILED_TO_CREATE_NEW_IMAGE
189 189
                     );
190 190
                 }
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
         $this->width = $this->info->getWidth();
197 197
         $this->height = $this->info->getHeight();
198 198
 
199
-        if(!$this->isVector()) {
199
+        if (!$this->isVector()) {
200 200
             $this->setNewImage($this->duplicateImage($this->sourceImage));
201 201
         }
202 202
     }
@@ -212,10 +212,10 @@  discard block
 block discarded – undo
212 212
     *
213 213
     * @see ImageHelper::ERROR_CANNOT_CREATE_IMAGE_OBJECT
214 214
     */
215
-    public static function createNew($width, $height, $type='png')
215
+    public static function createNew($width, $height, $type = 'png')
216 216
     {
217 217
         $img = imagecreatetruecolor($width, $height);
218
-        if($img !== false) {
218
+        if ($img !== false) {
219 219
             return self::createFromResource($img, 'png');
220 220
         }
221 221
         
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     * @param string $type The target image type, e.g. "jpeg", "png", etc.
239 239
     * @return ImageHelper
240 240
     */
241
-    public static function createFromResource($resource, ?string $type=null)
241
+    public static function createFromResource($resource, ?string $type = null)
242 242
     {
243 243
         self::requireResource($resource);
244 244
         
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
     */
271 271
     public static function setConfig($name, $value)
272 272
     {
273
-        if(isset(self::$config[$name])) {
273
+        if (isset(self::$config[$name])) {
274 274
             self::$config[$name] = $value;
275 275
         }
276 276
     }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
     * 
282 282
     * @param bool $enabled
283 283
     */
284
-    public static function setAutoMemoryAdjustment($enabled=true)
284
+    public static function setAutoMemoryAdjustment($enabled = true)
285 285
     {
286 286
         self::setConfig('auto-memory-adjustment', $enabled);
287 287
     }
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 
316 316
     public function enableAlpha()
317 317
     {
318
-        if(!$this->alpha) 
318
+        if (!$this->alpha) 
319 319
         {
320 320
             self::addAlphaSupport($this->newImage, false);
321 321
             $this->alpha = true;
@@ -346,9 +346,9 @@  discard block
 block discarded – undo
346 346
      * @param number $percent
347 347
      * @return ImageHelper
348 348
      */
349
-    public function sharpen($percent=0)
349
+    public function sharpen($percent = 0)
350 350
     {
351
-        if($percent <= 0) {
351
+        if ($percent <= 0) {
352 352
             return $this;
353 353
         }
354 354
         
@@ -357,9 +357,9 @@  discard block
 block discarded – undo
357 357
         return $this->convolute($factor);
358 358
     }
359 359
     
360
-    public function blur($percent=0)
360
+    public function blur($percent = 0)
361 361
     {
362
-        if($percent <= 0) {
362
+        if ($percent <= 0) {
363 363
             return $this;
364 364
         }
365 365
         
@@ -372,12 +372,12 @@  discard block
 block discarded – undo
372 372
     {
373 373
         // get a value thats equal to 64 - abs( factor )
374 374
         // ( using min/max to limited the factor to 0 - 64 to not get out of range values )
375
-        $val1Adjustment = 64 - min( 64, max( 0, abs( $factor ) ) );
375
+        $val1Adjustment = 64 - min(64, max(0, abs($factor)));
376 376
         
377 377
         // the base factor for the "current" pixel depends on if we are blurring or sharpening.
378 378
         // If we are blurring use 1, if sharpening use 9.
379 379
         $val1Base = 9;
380
-        if( abs( $factor ) != $factor ) {
380
+        if (abs($factor) != $factor) {
381 381
             $val1Base = 1;
382 382
         }
383 383
         
@@ -390,24 +390,24 @@  discard block
 block discarded – undo
390 390
         
391 391
         // the value for the surrounding pixels is either positive or negative depending on if we are blurring or sharpening.
392 392
         $val2 = -1;
393
-        if( abs( $factor ) != $factor ) {
393
+        if (abs($factor) != $factor) {
394 394
             $val2 = 1;
395 395
         }
396 396
         
397 397
         // setup matrix ..
398 398
         $matrix = array(
399
-            array( $val2, $val2, $val2 ),
400
-            array( $val2, $val1, $val2 ),
401
-            array( $val2, $val2, $val2 )
399
+            array($val2, $val2, $val2),
400
+            array($val2, $val1, $val2),
401
+            array($val2, $val2, $val2)
402 402
         );
403 403
         
404 404
         // calculate the correct divisor
405 405
         // actual divisor is equal to "$divisor = $val1 + $val2 * 8;"
406 406
         // but the following line is more generic
407
-        $divisor = array_sum( array_map( 'array_sum', $matrix ) );
407
+        $divisor = array_sum(array_map('array_sum', $matrix));
408 408
         
409 409
         // apply the matrix
410
-        imageconvolution( $this->newImage, $matrix, $divisor, 0 );
410
+        imageconvolution($this->newImage, $matrix, $divisor, 0);
411 411
         
412 412
         return $this;
413 413
     }
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
     */
534 534
     public function resample(?int $width = null, ?int $height = null) : ImageHelper
535 535
     {
536
-        if($this->isVector()) {
536
+        if ($this->isVector()) {
537 537
             return $this;
538 538
         }
539 539
         
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
 
555 555
     public function resampleAndCrop($width, $height) : ImageHelper
556 556
     {
557
-        if($this->isVector()) {
557
+        if ($this->isVector()) {
558 558
             return $this;
559 559
         }
560 560
 
@@ -601,14 +601,14 @@  discard block
 block discarded – undo
601 601
     * @param resource $canvas
602 602
     * @param bool $fill Whether to fill the whole canvas with the transparency
603 603
     */
604
-    public static function addAlphaSupport($canvas, $fill=true)
604
+    public static function addAlphaSupport($canvas, $fill = true)
605 605
     {
606 606
         self::requireResource($canvas);
607 607
         
608
-        imagealphablending($canvas,true);
608
+        imagealphablending($canvas, true);
609 609
         imagesavealpha($canvas, true);
610 610
 
611
-        if($fill) {
611
+        if ($fill) {
612 612
             self::fillImageTransparent($canvas);
613 613
         }
614 614
     }
@@ -618,13 +618,13 @@  discard block
 block discarded – undo
618 618
         return $this->alpha;
619 619
     }
620 620
 
621
-    public function save(string $targetFile, $dispose=true)
621
+    public function save(string $targetFile, $dispose = true)
622 622
     {
623
-        if($this->isVector()) {
623
+        if ($this->isVector()) {
624 624
             return true;
625 625
         }
626 626
         
627
-        if(!is_resource($this->newImage)) {
627
+        if (!is_resource($this->newImage)) {
628 628
             throw new ImageHelper_Exception(
629 629
                 'Error creating new image',
630 630
                 'Cannot save an image, no valid image resource was created. You have to call one of the resample methods to create a new image.',
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
             unlink($targetFile);
637 637
         }
638 638
         
639
-        $method = 'image' . $this->type;
639
+        $method = 'image'.$this->type;
640 640
         if (!$method($this->newImage, $targetFile, $this->resolveQuality())) {
641 641
             throw new ImageHelper_Exception(
642 642
                 'Error creating new image',
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
             );
658 658
         }
659 659
 
660
-        if($dispose) {
660
+        if ($dispose) {
661 661
             $this->dispose();
662 662
         }
663 663
         
@@ -666,11 +666,11 @@  discard block
 block discarded – undo
666 666
     
667 667
     public function dispose()
668 668
     {
669
-        if(is_resource($this->sourceImage)) {
669
+        if (is_resource($this->sourceImage)) {
670 670
             imagedestroy($this->sourceImage);
671 671
         }
672 672
         
673
-        if(is_resource($this->newImage)) {
673
+        if (is_resource($this->newImage)) {
674 674
             imagedestroy($this->newImage);
675 675
         }
676 676
     }
@@ -723,7 +723,7 @@  discard block
 block discarded – undo
723 723
     */
724 724
     protected function adjustMemory() : bool
725 725
     {
726
-        if(!self::$config['auto-memory-adjustment']) {
726
+        if (!self::$config['auto-memory-adjustment']) {
727 727
             return true;
728 728
         }
729 729
         
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
         if (function_exists('memory_get_usage') && memory_get_usage() + $memoryNeeded > $memoryLimit) {
753 753
             $newLimit = ($memoryLimit + (memory_get_usage() + $memoryNeeded)) / $MB;
754 754
             $newLimit = ceil($newLimit);
755
-            ini_set('memory_limit', $newLimit . 'M');
755
+            ini_set('memory_limit', $newLimit.'M');
756 756
 
757 757
             return true;
758 758
         }
@@ -783,16 +783,16 @@  discard block
 block discarded – undo
783 783
     */
784 784
     protected function resampleImage(int $newWidth, int $newHeight) : ImageHelper
785 785
     {
786
-        if($this->isVector()) {
786
+        if ($this->isVector()) {
787 787
             return $this;
788 788
         }
789 789
 
790
-        if($this->newWidth==$newWidth && $this->newHeight==$newHeight) {
790
+        if ($this->newWidth == $newWidth && $this->newHeight == $newHeight) {
791 791
             return $this;
792 792
         }
793 793
         
794
-        if($newWidth < 1) { $newWidth = 1; }
795
-        if($newHeight < 1) { $newHeight = 1; }
794
+        if ($newWidth < 1) { $newWidth = 1; }
795
+        if ($newHeight < 1) { $newHeight = 1; }
796 796
         
797 797
         $this->adjustMemory();
798 798
 
@@ -860,15 +860,15 @@  discard block
 block discarded – undo
860 860
     * @see ImageHelper::ERROR_NOT_A_RESOURCE
861 861
     * @see ImageHelper::ERROR_INVALID_STREAM_IMAGE_TYPE
862 862
     */
863
-    public static function displayImageStream($resource, string $imageType, int $quality=-1) : void
863
+    public static function displayImageStream($resource, string $imageType, int $quality = -1) : void
864 864
     {
865 865
         self::requireResource($resource);
866 866
 
867 867
         $imageType = self::requireValidStreamType($imageType);
868 868
         
869
-        header('Content-type:image/' . $imageType);
869
+        header('Content-type:image/'.$imageType);
870 870
 
871
-        $function = 'image' . $imageType;
871
+        $function = 'image'.$imageType;
872 872
         
873 873
         $function($resource, null, $quality);
874 874
     }
@@ -885,7 +885,7 @@  discard block
 block discarded – undo
885 885
     {
886 886
         $imageType = strtolower($imageType);
887 887
 
888
-        if(in_array($imageType, self::$streamTypes))
888
+        if (in_array($imageType, self::$streamTypes))
889 889
         {
890 890
             return $imageType;
891 891
         }
@@ -911,7 +911,7 @@  discard block
 block discarded – undo
911 911
         if (headers_sent($file, $line)) {
912 912
             throw new ImageHelper_Exception(
913 913
                 'Error displaying image',
914
-                'Headers have already been sent: in file ' . $file . ':' . $line,
914
+                'Headers have already been sent: in file '.$file.':'.$line,
915 915
                 self::ERROR_HEADERS_ALREADY_SENT
916 916
             );
917 917
         }
@@ -928,16 +928,16 @@  discard block
 block discarded – undo
928 928
         }
929 929
 
930 930
         $format = self::getFileImageType($imageFile);
931
-        if($format == 'svg') {
931
+        if ($format == 'svg') {
932 932
             $format = 'svg+xml';
933 933
         }
934 934
 
935
-        $contentType = 'image/' . $format;
935
+        $contentType = 'image/'.$format;
936 936
         
937 937
         header('Content-Type: '.$contentType);
938
-        header("Last-Modified: " . gmdate("D, d M Y H:i:s", filemtime($imageFile)) . " GMT");
938
+        header("Last-Modified: ".gmdate("D, d M Y H:i:s", filemtime($imageFile))." GMT");
939 939
         header('Cache-Control: public');
940
-        header('Content-Length: ' . filesize($imageFile));
940
+        header('Content-Length: '.filesize($imageFile));
941 941
 
942 942
         readfile($imageFile);
943 943
     }
@@ -965,7 +965,7 @@  discard block
 block discarded – undo
965 965
      * @see ImageHelper::ERROR_NOT_A_RESOURCE
966 966
      * @see ImageHelper::ERROR_CANNOT_CREATE_IMAGE_CANVAS
967 967
      */
968
-    public function trim(?array $color=null) : ImageHelper
968
+    public function trim(?array $color = null) : ImageHelper
969 969
     {
970 970
         return $this->trimImage($this->newImage, $color);
971 971
     }
@@ -987,7 +987,7 @@  discard block
 block discarded – undo
987 987
         $color = imagecolorsforindex($img, $colorIndex);
988 988
         
989 989
         // it seems imagecolorsforindex may return false (undocumented, unproven)
990
-        if(is_array($color)) {
990
+        if (is_array($color)) {
991 991
             return $color;
992 992
         }
993 993
         
@@ -1011,15 +1011,15 @@  discard block
 block discarded – undo
1011 1011
     * @see ImageHelper::ERROR_NOT_A_RESOURCE
1012 1012
     * @see ImageHelper::ERROR_CANNOT_CREATE_IMAGE_CANVAS
1013 1013
     */
1014
-    protected function trimImage($img, ?array $color=null) : ImageHelper
1014
+    protected function trimImage($img, ?array $color = null) : ImageHelper
1015 1015
     {
1016
-        if($this->isVector()) {
1016
+        if ($this->isVector()) {
1017 1017
             return $this;
1018 1018
         }
1019 1019
 
1020 1020
         self::requireResource($img);
1021 1021
         
1022
-        if(empty($color)) 
1022
+        if (empty($color)) 
1023 1023
         {
1024 1024
             $color = imagecolorat($img, 0, 0);
1025 1025
             $color = $this->getIndexedColors($img, $color);
@@ -1036,16 +1036,16 @@  discard block
 block discarded – undo
1036 1036
         $ymax = null;
1037 1037
          
1038 1038
         // Start scanning for the edges.
1039
-        for ($iy=0; $iy<$imh; $iy++)
1039
+        for ($iy = 0; $iy < $imh; $iy++)
1040 1040
         {
1041 1041
             $first = true;
1042 1042
             
1043
-            for ($ix=0; $ix<$imw; $ix++)
1043
+            for ($ix = 0; $ix < $imw; $ix++)
1044 1044
             {
1045 1045
                 $ndx = imagecolorat($img, $ix, $iy);
1046 1046
                 $colors = $this->getIndexedColors($img, $ndx);
1047 1047
                 
1048
-                if(!$this->colorsMatch($colors, $color)) 
1048
+                if (!$this->colorsMatch($colors, $color)) 
1049 1049
                 {
1050 1050
                     if ($xmin > $ix) { $xmin = $ix; }
1051 1051
                     if ($xmax < $ix) { $xmax = $ix; }
@@ -1053,7 +1053,7 @@  discard block
 block discarded – undo
1053 1053
                     
1054 1054
                     $ymax = $iy;
1055 1055
                     
1056
-                    if($first)
1056
+                    if ($first)
1057 1057
                     { 
1058 1058
                         $ix = $xmax; 
1059 1059
                         $first = false; 
@@ -1063,18 +1063,18 @@  discard block
 block discarded – undo
1063 1063
         }
1064 1064
         
1065 1065
         // no trimming border found
1066
-        if($ymax === null) {
1066
+        if ($ymax === null) {
1067 1067
             return $this;
1068 1068
         }
1069 1069
         
1070 1070
         // The new width and height of the image. 
1071
-        $imw = 1+$xmax-$xmin; // Image width in pixels
1072
-        $imh = 1+$ymax-$ymin; // Image height in pixels
1071
+        $imw = 1 + $xmax - $xmin; // Image width in pixels
1072
+        $imh = 1 + $ymax - $ymin; // Image height in pixels
1073 1073
 
1074 1074
         // Make another image to place the trimmed version in.
1075 1075
         $im2 = $this->createNewImage($imw, $imh);
1076 1076
         
1077
-        if($color['alpha'] > 0) 
1077
+        if ($color['alpha'] > 0) 
1078 1078
         {
1079 1079
             $bg2 = imagecolorallocatealpha($im2, $color['red'], $color['green'], $color['blue'], $color['alpha']);
1080 1080
             imagecolortransparent($im2, $bg2);
@@ -1113,7 +1113,7 @@  discard block
 block discarded – undo
1113 1113
         
1114 1114
         $this->newImage = $image;
1115 1115
         $this->newWidth = imagesx($image);
1116
-        $this->newHeight= imagesy($image);
1116
+        $this->newHeight = imagesy($image);
1117 1117
 
1118 1118
         return $this;
1119 1119
     }
@@ -1128,7 +1128,7 @@  discard block
 block discarded – undo
1128 1128
     */
1129 1129
     protected static function requireResource($subject) : void
1130 1130
     {
1131
-        if(is_resource($subject)) {
1131
+        if (is_resource($subject)) {
1132 1132
             return;
1133 1133
         }
1134 1134
         
@@ -1154,7 +1154,7 @@  discard block
 block discarded – undo
1154 1154
     {
1155 1155
         $img = imagecreatetruecolor($width, $height);
1156 1156
         
1157
-        if($img === false) 
1157
+        if ($img === false) 
1158 1158
         {
1159 1159
             throw new ImageHelper_Exception(
1160 1160
                 'Error creating new image',
@@ -1178,8 +1178,8 @@  discard block
 block discarded – undo
1178 1178
 	protected function colorsMatch(array $a, array $b) : bool
1179 1179
 	{
1180 1180
 		$parts = array('red', 'green', 'blue');
1181
-		foreach($parts as $part) {
1182
-			if($a[$part] != $b[$part]) {
1181
+		foreach ($parts as $part) {
1182
+			if ($a[$part] != $b[$part]) {
1183 1183
 				return false;
1184 1184
 			}
1185 1185
 		} 
@@ -1187,7 +1187,7 @@  discard block
 block discarded – undo
1187 1187
 		return true;
1188 1188
 	}
1189 1189
 	
1190
-	public function fillWhite($x=0, $y=0)
1190
+	public function fillWhite($x = 0, $y = 0)
1191 1191
 	{
1192 1192
 	    $this->addRGBColor('white', 255, 255, 255);
1193 1193
         return $this->fill('white', $x, $y);
@@ -1207,11 +1207,11 @@  discard block
 block discarded – undo
1207 1207
 	    self::requireResource($resource);
1208 1208
 	    
1209 1209
 	    $transparent = imagecolorallocatealpha($resource, 89, 14, 207, 127);
1210
-	    imagecolortransparent ($resource, $transparent);
1210
+	    imagecolortransparent($resource, $transparent);
1211 1211
 	    imagefill($resource, 0, 0, $transparent);
1212 1212
 	}
1213 1213
 	
1214
-	public function fill($colorName, $x=0, $y=0)
1214
+	public function fill($colorName, $x = 0, $y = 0)
1215 1215
 	{
1216 1216
 	    imagefill($this->newImage, $x, $y, $this->colors[$colorName]);
1217 1217
 	    return $this;
@@ -1225,7 +1225,7 @@  discard block
 block discarded – undo
1225 1225
         return $this;
1226 1226
     }
1227 1227
     
1228
-    public function textTTF($text, $size, $colorName, $x=0, $y=0, $angle=0)
1228
+    public function textTTF($text, $size, $colorName, $x = 0, $y = 0, $angle = 0)
1229 1229
     {
1230 1230
         imagealphablending($this->newImage, true);
1231 1231
         
@@ -1244,11 +1244,11 @@  discard block
 block discarded – undo
1244 1244
         return $this->newImage;
1245 1245
     }
1246 1246
     
1247
-    public function paste(ImageHelper $target, $xpos=0, $ypos=0, $sourceX=0, $sourceY=0)
1247
+    public function paste(ImageHelper $target, $xpos = 0, $ypos = 0, $sourceX = 0, $sourceY = 0)
1248 1248
     {
1249 1249
         $img = $target->getImage();
1250 1250
         
1251
-        if($target->isAlpha()) {
1251
+        if ($target->isAlpha()) {
1252 1252
             $this->enableAlpha();
1253 1253
         }
1254 1254
         
@@ -1293,10 +1293,10 @@  discard block
 block discarded – undo
1293 1293
     public function fitText($text, $matchWidth)
1294 1294
     {
1295 1295
         $sizes = array();
1296
-        for($i=1; $i<=1000; $i=$i+0.1) {
1296
+        for ($i = 1; $i <= 1000; $i = $i + 0.1) {
1297 1297
             $size = $this->calcTextSize($text, $i);
1298 1298
             $sizes[] = $size;
1299
-            if($size['width'] >= $matchWidth) {
1299
+            if ($size['width'] >= $matchWidth) {
1300 1300
                 break;
1301 1301
             }
1302 1302
         }
@@ -1308,7 +1308,7 @@  discard block
 block discarded – undo
1308 1308
         $diffLast = $last['width'] - $matchWidth;
1309 1309
         $diffPrev = $matchWidth - $prev['width'];
1310 1310
     
1311
-        if($diffLast <= $diffPrev) {
1311
+        if ($diffLast <= $diffPrev) {
1312 1312
             return $last;
1313 1313
         }
1314 1314
     
@@ -1336,14 +1336,14 @@  discard block
 block discarded – undo
1336 1336
             'bottom_left_y' => $box[1],
1337 1337
             'bottom_right_x' => $box[2],
1338 1338
             'bottom_right_y' => $box[3],
1339
-            'width' => $right-$left,
1340
-            'height' => $bottom-$top
1339
+            'width' => $right - $left,
1340
+            'height' => $bottom - $top
1341 1341
         );
1342 1342
     }
1343 1343
     
1344 1344
     protected function requireTTFFont()
1345 1345
     {
1346
-        if(isset($this->TTFFile)) {
1346
+        if (isset($this->TTFFile)) {
1347 1347
             return;
1348 1348
         }
1349 1349
         
@@ -1378,7 +1378,7 @@  discard block
 block discarded – undo
1378 1378
 	 */
1379 1379
 	public static function getImageSize($pathOrResource) : ImageHelper_Size
1380 1380
 	{
1381
-	    if(is_resource($pathOrResource)) 
1381
+	    if (is_resource($pathOrResource)) 
1382 1382
 	    {
1383 1383
 	        return new ImageHelper_Size(array(
1384 1384
 	            'width' => imagesx($pathOrResource),
@@ -1392,7 +1392,7 @@  discard block
 block discarded – undo
1392 1392
 	    
1393 1393
 	    $info = false;
1394 1394
 	    $method = 'getImageSize_'.$type;
1395
-	    if(method_exists(__CLASS__, $method)) 
1395
+	    if (method_exists(__CLASS__, $method)) 
1396 1396
 	    {
1397 1397
 	        $info = call_user_func(array(__CLASS__, $method), $pathOrResource);
1398 1398
 	    } 
@@ -1401,7 +1401,7 @@  discard block
 block discarded – undo
1401 1401
 	        $info = getimagesize($pathOrResource);
1402 1402
 	    }
1403 1403
 	    
1404
-	    if($info !== false) {
1404
+	    if ($info !== false) {
1405 1405
 	        return new ImageHelper_Size($info);
1406 1406
 	    }
1407 1407
 	    
@@ -1427,7 +1427,7 @@  discard block
 block discarded – undo
1427 1427
 	    $xml = XMLHelper::createSimplexml();
1428 1428
 	    $xml->loadFile($imagePath);
1429 1429
 	    
1430
-	    if($xml->hasErrors()) {
1430
+	    if ($xml->hasErrors()) {
1431 1431
 	        throw new ImageHelper_Exception(
1432 1432
 	            'Error opening SVG image',
1433 1433
 	            sprintf(
@@ -1442,7 +1442,7 @@  discard block
 block discarded – undo
1442 1442
 	    $xml->dispose();
1443 1443
 	    unset($xml);
1444 1444
 	    
1445
-	    if(!isset($data['@attributes']) || !isset($data['@attributes']['viewBox'])) {
1445
+	    if (!isset($data['@attributes']) || !isset($data['@attributes']['viewBox'])) {
1446 1446
 	        throw new ImageHelper_Exception(
1447 1447
 	            'SVG Image is corrupted',
1448 1448
 	            sprintf(
@@ -1459,7 +1459,7 @@  discard block
 block discarded – undo
1459 1459
 	    $viewBox = str_replace(' ', ',', $data['@attributes']['viewBox']);
1460 1460
 	    $size = explode(',', $viewBox);
1461 1461
 	    
1462
-	    if(count($size) != 4) 
1462
+	    if (count($size) != 4) 
1463 1463
 	    {
1464 1464
 	        throw new ImageHelper_Exception(
1465 1465
 	            'SVG image has an invalid viewBox attribute',
@@ -1505,7 +1505,7 @@  discard block
 block discarded – undo
1505 1505
     * @param integer $y
1506 1506
     * @return ImageHelper
1507 1507
     */
1508
-    public function crop(int $width, int $height, int $x=0, int $y=0) : ImageHelper
1508
+    public function crop(int $width, int $height, int $x = 0, int $y = 0) : ImageHelper
1509 1509
     {
1510 1510
         $new = $this->createNewImage($width, $height);
1511 1511
         
@@ -1542,7 +1542,7 @@  discard block
 block discarded – undo
1542 1542
     * @see ImageHelper::calcAverageColorRGB()
1543 1543
     * @see ImageHelper::calcAverageColorHEX()
1544 1544
     */
1545
-    public function calcAverageColor(int $format=self::COLORFORMAT_RGB)
1545
+    public function calcAverageColor(int $format = self::COLORFORMAT_RGB)
1546 1546
     {
1547 1547
         $image = $this->duplicate();
1548 1548
         $image->resample(1, 1);
@@ -1561,7 +1561,7 @@  discard block
 block discarded – undo
1561 1561
     public function calcAverageColorRGB() : array
1562 1562
     {
1563 1563
        $result = $this->calcAverageColor(self::COLORFORMAT_RGB);
1564
-       if(is_array($result)) {
1564
+       if (is_array($result)) {
1565 1565
            return $result;
1566 1566
        }
1567 1567
        
@@ -1582,7 +1582,7 @@  discard block
 block discarded – undo
1582 1582
     public function calcAverageColorHex() : string
1583 1583
     {
1584 1584
         $result = $this->calcAverageColor(self::COLORFORMAT_HEX);
1585
-        if(is_string($result)) {
1585
+        if (is_string($result)) {
1586 1586
             return $result;
1587 1587
         }
1588 1588
         
@@ -1618,9 +1618,9 @@  discard block
 block discarded – undo
1618 1618
      * @throws ImageHelper_Exception
1619 1619
      * @see ImageHelper::ERROR_POSITION_OUT_OF_BOUNDS
1620 1620
      */
1621
-    public function getColorAt(int $x, int $y, int $format=self::COLORFORMAT_RGB)
1621
+    public function getColorAt(int $x, int $y, int $format = self::COLORFORMAT_RGB)
1622 1622
     {
1623
-        if($x > $this->getWidth() || $y > $this->getHeight()) 
1623
+        if ($x > $this->getWidth() || $y > $this->getHeight()) 
1624 1624
         {
1625 1625
             throw new ImageHelper_Exception(
1626 1626
                 'Position out of bounds',
@@ -1638,7 +1638,7 @@  discard block
 block discarded – undo
1638 1638
         $idx = imagecolorat($this->newImage, $x, $y);
1639 1639
         $rgb = $this->getIndexedColors($this->newImage, $idx);
1640 1640
         
1641
-        if($format == self::COLORFORMAT_HEX) {
1641
+        if ($format == self::COLORFORMAT_HEX) {
1642 1642
             return self::rgb2hex($rgb);
1643 1643
         }
1644 1644
 
@@ -1653,7 +1653,7 @@  discard block
 block discarded – undo
1653 1653
     */
1654 1654
     public static function rgb2luma(array $rgb) : int
1655 1655
     {
1656
-        return (int)floor((($rgb['red']*2)+$rgb['blue']+($rgb['green']*3))/6);
1656
+        return (int)floor((($rgb['red'] * 2) + $rgb['blue'] + ($rgb['green'] * 3)) / 6);
1657 1657
     }
1658 1658
 
1659 1659
     /**
@@ -1681,7 +1681,7 @@  discard block
 block discarded – undo
1681 1681
     */
1682 1682
     public function getHash() : string
1683 1683
     {
1684
-        if($this->newImage === null)
1684
+        if ($this->newImage === null)
1685 1685
         {
1686 1686
             throw new ImageHelper_Exception(
1687 1687
                 'No image loaded to create a hash for.',
Please login to merge, or discard this patch.
src/ConvertHelper/TextComparer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,14 +87,14 @@
 block discarded – undo
87 87
     public function match(string $source, string $target) : float
88 88
     {
89 89
         // avoid doing this via levenshtein
90
-        if($source === $target) {
90
+        if ($source === $target) {
91 91
             return 100;
92 92
         }
93 93
 
94 94
         $maxL = $this->getMaxDistance();
95 95
 
96 96
         $diff = levenshtein($source, $target);
97
-        if($diff > $maxL) {
97
+        if ($diff > $maxL) {
98 98
             return 0;
99 99
         }
100 100
 
Please login to merge, or discard this patch.
src/ConvertHelper/Comparator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,19 +49,19 @@
 block discarded – undo
49 49
      */
50 50
     protected static function convertScalarForComparison($scalar) : ?string
51 51
     {
52
-        if($scalar === '' || is_null($scalar)) {
52
+        if ($scalar === '' || is_null($scalar)) {
53 53
             return null;
54 54
         }
55 55
 
56
-        if(is_bool($scalar)) {
56
+        if (is_bool($scalar)) {
57 57
             return ConvertHelper_Bool::toStringStrict($scalar);
58 58
         }
59 59
 
60
-        if(is_array($scalar)) {
60
+        if (is_array($scalar)) {
61 61
             $scalar = md5(serialize($scalar));
62 62
         }
63 63
 
64
-        if($scalar !== null && !is_scalar($scalar)) {
64
+        if ($scalar !== null && !is_scalar($scalar)) {
65 65
             throw new ConvertHelper_Exception(
66 66
                 'Not a scalar value in comparison',
67 67
                 null,
Please login to merge, or discard this patch.
src/ConvertHelper/String.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
      * @param bool $caseInsensitive
34 34
      * @return ConvertHelper_StringMatch[]
35 35
      */
36
-    public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array
36
+    public static function findString(string $needle, string $haystack, bool $caseInsensitive = false): array
37 37
     {
38
-        if($needle === '') {
38
+        if ($needle === '') {
39 39
             return array();
40 40
         }
41 41
 
42 42
         $function = 'mb_strpos';
43
-        if($caseInsensitive) {
43
+        if ($caseInsensitive) {
44 44
             $function = 'mb_stripos';
45 45
         }
46 46
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $positions = array();
49 49
         $length = mb_strlen($needle);
50 50
 
51
-        while( ($pos = $function($haystack, $needle, $pos)) !== false)
51
+        while (($pos = $function($haystack, $needle, $pos)) !== false)
52 52
         {
53 53
             $match = mb_substr($haystack, $pos, $length);
54 54
             $positions[] = new ConvertHelper_StringMatch($pos, $match);
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     public static function toArray(string $string) : array
72 72
     {
73 73
         $result = preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY);
74
-        if($result !== false) {
74
+        if ($result !== false) {
75 75
             return $result;
76 76
         }
77 77
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      */
125 125
     public static function toUtf8(string $string) : string
126 126
     {
127
-        if(!self::isASCII($string)) {
127
+        if (!self::isASCII($string)) {
128 128
             return Encoding::toUTF8($string);
129 129
         }
130 130
 
@@ -142,11 +142,11 @@  discard block
 block discarded – undo
142 142
      */
143 143
     public static function isASCII($string) : bool
144 144
     {
145
-        if($string === '' || $string === NULL) {
145
+        if ($string === '' || $string === NULL) {
146 146
             return true;
147 147
         }
148 148
 
149
-        if(!is_string($string)) {
149
+        if (!is_string($string)) {
150 150
             return false;
151 151
         }
152 152
 
@@ -161,12 +161,12 @@  discard block
 block discarded – undo
161 161
      */
162 162
     public static function isHTML(string $string) : bool
163 163
     {
164
-        if(preg_match('%<[a-z/][\s\S]*>%siU', $string)) {
164
+        if (preg_match('%<[a-z/][\s\S]*>%siU', $string)) {
165 165
             return true;
166 166
         }
167 167
 
168 168
         $decoded = html_entity_decode($string);
169
-        if($decoded !== $string) {
169
+        if ($decoded !== $string) {
170 170
             return true;
171 171
         }
172 172
 
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      * @param int $tabSize The amount of spaces per tab.
199 199
      * @return string
200 200
      */
201
-    public static function tabs2spaces(string $string, int $tabSize=4) : string
201
+    public static function tabs2spaces(string $string, int $tabSize = 4) : string
202 202
     {
203 203
         return str_replace("\t", str_repeat(' ', $tabSize), $string);
204 204
     }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
      * @param int $tabSize The amount of spaces per tab in the source string.
211 211
      * @return string
212 212
      */
213
-    public static function spaces2tabs(string $string, int $tabSize=4) : string
213
+    public static function spaces2tabs(string $string, int $tabSize = 4) : string
214 214
     {
215 215
         return str_replace(str_repeat(' ', $tabSize), "\t", $string);
216 216
     }
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
             return $text;
290 290
         }
291 291
 
292
-        return trim(mb_substr($text, 0, $targetLength)) . $append;
292
+        return trim(mb_substr($text, 0, $targetLength)).$append;
293 293
     }
294 294
 
295 295
     /**
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
      */
303 303
     public static function explodeTrim(string $delimiter, string $string) : array
304 304
     {
305
-        if(empty($string) || empty($delimiter)) {
305
+        if (empty($string) || empty($delimiter)) {
306 306
             return array();
307 307
         }
308 308
 
@@ -310,8 +310,8 @@  discard block
 block discarded – undo
310 310
         $tokens = array_map('trim', $tokens);
311 311
 
312 312
         $keep = array();
313
-        foreach($tokens as $token) {
314
-            if($token !== '') {
313
+        foreach ($tokens as $token) {
314
+            if ($token !== '') {
315 315
                 $keep[] = $token;
316 316
             }
317 317
         }
Please login to merge, or discard this patch.