@@ -134,10 +134,10 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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.', |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @param int $tabSize The amount of spaces per tab. |
56 | 56 | * @return string |
57 | 57 | */ |
58 | - public static function tabs2spaces(string $string, int $tabSize=4) : string |
|
58 | + public static function tabs2spaces(string $string, int $tabSize = 4) : string |
|
59 | 59 | { |
60 | 60 | return ConvertHelper_String::tabs2spaces($string, $tabSize); |
61 | 61 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * @param int $tabSize The amount of spaces per tab in the source string. |
68 | 68 | * @return string |
69 | 69 | */ |
70 | - public static function spaces2tabs(string $string, int $tabSize=4) : string |
|
70 | + public static function spaces2tabs(string $string, int $tabSize = 4) : string |
|
71 | 71 | { |
72 | 72 | return ConvertHelper_String::spaces2tabs($string, $tabSize); |
73 | 73 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @deprecated Use the Highlighter class directly instead. |
141 | 141 | * @see Highlighter::xml() |
142 | 142 | */ |
143 | - public static function highlight_xml(string $xml, bool $formatSource=false) : string |
|
143 | + public static function highlight_xml(string $xml, bool $formatSource = false) : string |
|
144 | 144 | { |
145 | 145 | return Highlighter::xml($xml, $formatSource); |
146 | 146 | } |
@@ -206,11 +206,11 @@ discard block |
||
206 | 206 | * @param bool $html |
207 | 207 | * @return string |
208 | 208 | */ |
209 | - public static function var_dump($var, bool $html=true) : string |
|
209 | + public static function var_dump($var, bool $html = true) : string |
|
210 | 210 | { |
211 | 211 | $info = parseVariable($var); |
212 | 212 | |
213 | - if($html) { |
|
213 | + if ($html) { |
|
214 | 214 | return $info->toHTML(); |
215 | 215 | } |
216 | 216 | |
@@ -225,11 +225,11 @@ discard block |
||
225 | 225 | * @param bool $html Whether to style the dump as HTML. |
226 | 226 | * @return string |
227 | 227 | */ |
228 | - public static function print_r($var, bool $return=false, bool $html=true) : string |
|
228 | + public static function print_r($var, bool $return = false, bool $html = true) : string |
|
229 | 229 | { |
230 | 230 | $result = parseVariable($var)->enableType()->toString(); |
231 | 231 | |
232 | - if($html) |
|
232 | + if ($html) |
|
233 | 233 | { |
234 | 234 | $result = |
235 | 235 | '<pre style="background:#fff;color:#333;padding:16px;border:solid 1px #bbb;border-radius:4px">'. |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | '</pre>'; |
238 | 238 | } |
239 | 239 | |
240 | - if(!$return) |
|
240 | + if (!$return) |
|
241 | 241 | { |
242 | 242 | echo $result; |
243 | 243 | } |
@@ -419,12 +419,12 @@ discard block |
||
419 | 419 | $output = ''; |
420 | 420 | $split = str_split($unicodeChar); |
421 | 421 | |
422 | - foreach($split as $octet) |
|
422 | + foreach ($split as $octet) |
|
423 | 423 | { |
424 | 424 | $ordInt = ord($octet); |
425 | 425 | // Convert from int (base 10) to hex (base 16), for PHP \x syntax |
426 | 426 | $ordHex = base_convert((string)$ordInt, 10, 16); |
427 | - $output .= '\x' . $ordHex; |
|
427 | + $output .= '\x'.$ordHex; |
|
428 | 428 | } |
429 | 429 | |
430 | 430 | return $output; |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | * |
639 | 639 | * @see JSHelper::buildRegexStatement() |
640 | 640 | */ |
641 | - public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT) : string |
|
641 | + public static function regex2js(string $regex, string $statementType = JSHelper::JS_REGEX_OBJECT) : string |
|
642 | 642 | { |
643 | 643 | return JSHelper::buildRegexStatement($regex, $statementType); |
644 | 644 | } |
@@ -657,11 +657,11 @@ discard block |
||
657 | 657 | * @throws ConvertHelper_Exception |
658 | 658 | * @see ConvertHelper::ERROR_JSON_ENCODE_FAILED |
659 | 659 | */ |
660 | - public static function var2json($variable, int $options=0, int $depth=512) : string |
|
660 | + public static function var2json($variable, int $options = 0, int $depth = 512) : string |
|
661 | 661 | { |
662 | 662 | $result = json_encode($variable, $options, $depth); |
663 | 663 | |
664 | - if($result !== false) { |
|
664 | + if ($result !== false) { |
|
665 | 665 | return $result; |
666 | 666 | } |
667 | 667 | |
@@ -701,12 +701,12 @@ discard block |
||
701 | 701 | { |
702 | 702 | $boms = FileHelper::getUTFBOMs(); |
703 | 703 | |
704 | - foreach($boms as $bomChars) |
|
704 | + foreach ($boms as $bomChars) |
|
705 | 705 | { |
706 | 706 | $length = mb_strlen($bomChars); |
707 | 707 | $text = mb_substr($string, 0, $length); |
708 | 708 | |
709 | - if($text===$bomChars) |
|
709 | + if ($text === $bomChars) |
|
710 | 710 | { |
711 | 711 | return mb_substr($string, $length); |
712 | 712 | } |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | * @see ConvertHelper_TextComparer::OPTION_MAX_LEVENSHTEIN_DISTANCE |
779 | 779 | * @see ConvertHelper_TextComparer::OPTION_PRECISION |
780 | 780 | */ |
781 | - public static function matchString(string $source, string $target, array $options=array()) : float |
|
781 | + public static function matchString(string $source, string $target, array $options = array()) : float |
|
782 | 782 | { |
783 | 783 | return (new ConvertHelper_TextComparer()) |
784 | 784 | ->setOptions($options) |
@@ -856,7 +856,7 @@ discard block |
||
856 | 856 | * @see ConvertHelper::INTERVAL_HOURS |
857 | 857 | * @see ConvertHelper::INTERVAL_DAYS |
858 | 858 | */ |
859 | - public static function interval2total(DateInterval $interval, string $unit=self::INTERVAL_SECONDS) : int |
|
859 | + public static function interval2total(DateInterval $interval, string $unit = self::INTERVAL_SECONDS) : int |
|
860 | 860 | { |
861 | 861 | return ConvertHelper_DateInterval::toTotal($interval, $unit); |
862 | 862 | } |
@@ -868,7 +868,7 @@ discard block |
||
868 | 868 | * @param bool $short |
869 | 869 | * @return string|NULL |
870 | 870 | */ |
871 | - public static function date2dayName(DateTime $date, bool $short=false) : ?string |
|
871 | + public static function date2dayName(DateTime $date, bool $short = false) : ?string |
|
872 | 872 | { |
873 | 873 | return ConvertHelper_Date::toDayName($date, $short); |
874 | 874 | } |
@@ -888,7 +888,7 @@ discard block |
||
888 | 888 | * @param bool $short |
889 | 889 | * @return string[] |
890 | 890 | */ |
891 | - public static function getDayNames(bool $short=false) : array |
|
891 | + public static function getDayNames(bool $short = false) : array |
|
892 | 892 | { |
893 | 893 | return ConvertHelper_Date::getDayNames($short); |
894 | 894 | } |
@@ -1047,7 +1047,7 @@ discard block |
||
1047 | 1047 | * @param bool $caseInsensitive |
1048 | 1048 | * @return ConvertHelper_StringMatch[] |
1049 | 1049 | */ |
1050 | - public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array |
|
1050 | + public static function findString(string $needle, string $haystack, bool $caseInsensitive = false): array |
|
1051 | 1051 | { |
1052 | 1052 | return ConvertHelper_String::findString($needle, $haystack, $caseInsensitive); |
1053 | 1053 | } |
@@ -1097,17 +1097,17 @@ discard block |
||
1097 | 1097 | */ |
1098 | 1098 | public static function isInteger($value) : bool |
1099 | 1099 | { |
1100 | - if(is_int($value)) { |
|
1100 | + if (is_int($value)) { |
|
1101 | 1101 | return true; |
1102 | 1102 | } |
1103 | 1103 | |
1104 | 1104 | // booleans get converted to numbers, so they would |
1105 | 1105 | // actually match the regex. |
1106 | - if(is_bool($value)) { |
|
1106 | + if (is_bool($value)) { |
|
1107 | 1107 | return false; |
1108 | 1108 | } |
1109 | 1109 | |
1110 | - if(is_string($value) && $value !== '') { |
|
1110 | + if (is_string($value) && $value !== '') { |
|
1111 | 1111 | return preg_match('/\A-?\d+\z/', $value) === 1; |
1112 | 1112 | } |
1113 | 1113 | |
@@ -1173,7 +1173,7 @@ discard block |
||
1173 | 1173 | * @param bool $keepKeys |
1174 | 1174 | * @return array<number|string,mixed> |
1175 | 1175 | */ |
1176 | - public static function arrayRemoveValues(array $sourceArray, array $values, bool $keepKeys=false) : array |
|
1176 | + public static function arrayRemoveValues(array $sourceArray, array $values, bool $keepKeys = false) : array |
|
1177 | 1177 | { |
1178 | 1178 | return ConvertHelper_Array::removeValues($sourceArray, $values, $keepKeys); |
1179 | 1179 | } |
@@ -87,14 +87,14 @@ |
||
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 |
@@ -49,19 +49,19 @@ |
||
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, |
@@ -33,14 +33,14 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | } |