@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | * @param int $tabSize The amount of spaces per tab. |
| 51 | 51 | * @return string |
| 52 | 52 | */ |
| 53 | - public static function tabs2spaces(string $string, int $tabSize=4) : string |
|
| 53 | + public static function tabs2spaces(string $string, int $tabSize = 4) : string |
|
| 54 | 54 | { |
| 55 | 55 | return ConvertHelper_String::tabs2spaces($string, $tabSize); |
| 56 | 56 | } |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | * @param int $tabSize The amount of spaces per tab in the source string. |
| 63 | 63 | * @return string |
| 64 | 64 | */ |
| 65 | - public static function spaces2tabs(string $string, int $tabSize=4) : string |
|
| 65 | + public static function spaces2tabs(string $string, int $tabSize = 4) : string |
|
| 66 | 66 | { |
| 67 | 67 | return ConvertHelper_String::spaces2tabs($string, $tabSize); |
| 68 | 68 | } |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | * @deprecated Use the Highlighter class directly instead. |
| 136 | 136 | * @see Highlighter::xml() |
| 137 | 137 | */ |
| 138 | - public static function highlight_xml(string $xml, bool $formatSource=false) : string |
|
| 138 | + public static function highlight_xml(string $xml, bool $formatSource = false) : string |
|
| 139 | 139 | { |
| 140 | 140 | return Highlighter::xml($xml, $formatSource); |
| 141 | 141 | } |
@@ -201,11 +201,11 @@ discard block |
||
| 201 | 201 | * @param bool $html |
| 202 | 202 | * @return string |
| 203 | 203 | */ |
| 204 | - public static function var_dump($var, bool $html=true) : string |
|
| 204 | + public static function var_dump($var, bool $html = true) : string |
|
| 205 | 205 | { |
| 206 | 206 | $info = parseVariable($var); |
| 207 | 207 | |
| 208 | - if($html) { |
|
| 208 | + if ($html) { |
|
| 209 | 209 | return $info->toHTML(); |
| 210 | 210 | } |
| 211 | 211 | |
@@ -220,11 +220,11 @@ discard block |
||
| 220 | 220 | * @param bool $html Whether to style the dump as HTML. |
| 221 | 221 | * @return string |
| 222 | 222 | */ |
| 223 | - public static function print_r($var, bool $return=false, bool $html=true) : string |
|
| 223 | + public static function print_r($var, bool $return = false, bool $html = true) : string |
|
| 224 | 224 | { |
| 225 | 225 | $result = parseVariable($var)->enableType()->toString(); |
| 226 | 226 | |
| 227 | - if($html) |
|
| 227 | + if ($html) |
|
| 228 | 228 | { |
| 229 | 229 | $result = |
| 230 | 230 | '<pre style="background:#fff;color:#333;padding:16px;border:solid 1px #bbb;border-radius:4px">'. |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | '</pre>'; |
| 233 | 233 | } |
| 234 | 234 | |
| 235 | - if(!$return) |
|
| 235 | + if (!$return) |
|
| 236 | 236 | { |
| 237 | 237 | echo $result; |
| 238 | 238 | } |
@@ -413,12 +413,12 @@ discard block |
||
| 413 | 413 | $output = ''; |
| 414 | 414 | $split = str_split($unicodeChar); |
| 415 | 415 | |
| 416 | - foreach($split as $octet) |
|
| 416 | + foreach ($split as $octet) |
|
| 417 | 417 | { |
| 418 | 418 | $ordInt = ord($octet); |
| 419 | 419 | // Convert from int (base 10) to hex (base 16), for PHP \x syntax |
| 420 | 420 | $ordHex = base_convert((string)$ordInt, 10, 16); |
| 421 | - $output .= '\x' . $ordHex; |
|
| 421 | + $output .= '\x'.$ordHex; |
|
| 422 | 422 | } |
| 423 | 423 | |
| 424 | 424 | return $output; |
@@ -471,19 +471,19 @@ discard block |
||
| 471 | 471 | */ |
| 472 | 472 | protected static function convertScalarForComparison($scalar) : ?string |
| 473 | 473 | { |
| 474 | - if($scalar === '' || is_null($scalar)) { |
|
| 474 | + if ($scalar === '' || is_null($scalar)) { |
|
| 475 | 475 | return null; |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | - if(is_bool($scalar)) { |
|
| 478 | + if (is_bool($scalar)) { |
|
| 479 | 479 | return self::bool2string($scalar); |
| 480 | 480 | } |
| 481 | 481 | |
| 482 | - if(is_array($scalar)) { |
|
| 482 | + if (is_array($scalar)) { |
|
| 483 | 483 | $scalar = md5(serialize($scalar)); |
| 484 | 484 | } |
| 485 | 485 | |
| 486 | - if($scalar !== null && !is_scalar($scalar)) { |
|
| 486 | + if ($scalar !== null && !is_scalar($scalar)) { |
|
| 487 | 487 | throw new ConvertHelper_Exception( |
| 488 | 488 | 'Not a scalar value in comparison', |
| 489 | 489 | null, |
@@ -669,7 +669,7 @@ discard block |
||
| 669 | 669 | * |
| 670 | 670 | * @see JSHelper::buildRegexStatement() |
| 671 | 671 | */ |
| 672 | - public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT) : string |
|
| 672 | + public static function regex2js(string $regex, string $statementType = JSHelper::JS_REGEX_OBJECT) : string |
|
| 673 | 673 | { |
| 674 | 674 | return JSHelper::buildRegexStatement($regex, $statementType); |
| 675 | 675 | } |
@@ -688,11 +688,11 @@ discard block |
||
| 688 | 688 | * @throws ConvertHelper_Exception |
| 689 | 689 | * @see ConvertHelper::ERROR_JSON_ENCODE_FAILED |
| 690 | 690 | */ |
| 691 | - public static function var2json($variable, int $options=0, int $depth=512) : string |
|
| 691 | + public static function var2json($variable, int $options = 0, int $depth = 512) : string |
|
| 692 | 692 | { |
| 693 | 693 | $result = json_encode($variable, $options, $depth); |
| 694 | 694 | |
| 695 | - if($result !== false) { |
|
| 695 | + if ($result !== false) { |
|
| 696 | 696 | return $result; |
| 697 | 697 | } |
| 698 | 698 | |
@@ -731,10 +731,10 @@ discard block |
||
| 731 | 731 | public static function stripUTFBom($string) |
| 732 | 732 | { |
| 733 | 733 | $boms = FileHelper::getUTFBOMs(); |
| 734 | - foreach($boms as $bomChars) { |
|
| 734 | + foreach ($boms as $bomChars) { |
|
| 735 | 735 | $length = mb_strlen($bomChars); |
| 736 | 736 | $text = mb_substr($string, 0, $length); |
| 737 | - if($text==$bomChars) { |
|
| 737 | + if ($text == $bomChars) { |
|
| 738 | 738 | return mb_substr($string, $length); |
| 739 | 739 | } |
| 740 | 740 | } |
@@ -801,7 +801,7 @@ discard block |
||
| 801 | 801 | * @param array<string,mixed> $options |
| 802 | 802 | * @return float |
| 803 | 803 | */ |
| 804 | - public static function matchString(string $source, string $target, array $options=array()) : float |
|
| 804 | + public static function matchString(string $source, string $target, array $options = array()) : float |
|
| 805 | 805 | { |
| 806 | 806 | $defaults = array( |
| 807 | 807 | 'maxLevenshtein' => 10, |
@@ -811,12 +811,12 @@ discard block |
||
| 811 | 811 | $options = array_merge($defaults, $options); |
| 812 | 812 | |
| 813 | 813 | // avoid doing this via levenshtein |
| 814 | - if($source == $target) { |
|
| 814 | + if ($source == $target) { |
|
| 815 | 815 | return 100; |
| 816 | 816 | } |
| 817 | 817 | |
| 818 | 818 | $diff = levenshtein($source, $target); |
| 819 | - if($diff > $options['maxLevenshtein']) { |
|
| 819 | + if ($diff > $options['maxLevenshtein']) { |
|
| 820 | 820 | return 0; |
| 821 | 821 | } |
| 822 | 822 | |
@@ -897,7 +897,7 @@ discard block |
||
| 897 | 897 | * @see ConvertHelper::INTERVAL_HOURS |
| 898 | 898 | * @see ConvertHelper::INTERVAL_DAYS |
| 899 | 899 | */ |
| 900 | - public static function interval2total(DateInterval $interval, string $unit=self::INTERVAL_SECONDS) : int |
|
| 900 | + public static function interval2total(DateInterval $interval, string $unit = self::INTERVAL_SECONDS) : int |
|
| 901 | 901 | { |
| 902 | 902 | return ConvertHelper_DateInterval::toTotal($interval, $unit); |
| 903 | 903 | } |
@@ -909,7 +909,7 @@ discard block |
||
| 909 | 909 | * @param bool $short |
| 910 | 910 | * @return string|NULL |
| 911 | 911 | */ |
| 912 | - public static function date2dayName(DateTime $date, bool $short=false) : ?string |
|
| 912 | + public static function date2dayName(DateTime $date, bool $short = false) : ?string |
|
| 913 | 913 | { |
| 914 | 914 | return ConvertHelper_Date::toDayName($date, $short); |
| 915 | 915 | } |
@@ -929,7 +929,7 @@ discard block |
||
| 929 | 929 | * @param bool $short |
| 930 | 930 | * @return string[] |
| 931 | 931 | */ |
| 932 | - public static function getDayNames(bool $short=false) : array |
|
| 932 | + public static function getDayNames(bool $short = false) : array |
|
| 933 | 933 | { |
| 934 | 934 | return ConvertHelper_Date::getDayNames($short); |
| 935 | 935 | } |
@@ -1088,7 +1088,7 @@ discard block |
||
| 1088 | 1088 | * @param bool $caseInsensitive |
| 1089 | 1089 | * @return ConvertHelper_StringMatch[] |
| 1090 | 1090 | */ |
| 1091 | - public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array |
|
| 1091 | + public static function findString(string $needle, string $haystack, bool $caseInsensitive = false): array |
|
| 1092 | 1092 | { |
| 1093 | 1093 | return ConvertHelper_String::findString($needle, $haystack, $caseInsensitive); |
| 1094 | 1094 | } |
@@ -1138,17 +1138,17 @@ discard block |
||
| 1138 | 1138 | */ |
| 1139 | 1139 | public static function isInteger($value) : bool |
| 1140 | 1140 | { |
| 1141 | - if(is_int($value)) { |
|
| 1141 | + if (is_int($value)) { |
|
| 1142 | 1142 | return true; |
| 1143 | 1143 | } |
| 1144 | 1144 | |
| 1145 | 1145 | // booleans get converted to numbers, so they would |
| 1146 | 1146 | // actually match the regex. |
| 1147 | - if(is_bool($value)) { |
|
| 1147 | + if (is_bool($value)) { |
|
| 1148 | 1148 | return false; |
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | - if(is_string($value) && $value !== '') { |
|
| 1151 | + if (is_string($value) && $value !== '') { |
|
| 1152 | 1152 | return preg_match('/\A-?\d+\z/', $value) === 1; |
| 1153 | 1153 | } |
| 1154 | 1154 | |
@@ -1214,7 +1214,7 @@ discard block |
||
| 1214 | 1214 | * @param bool $keepKeys |
| 1215 | 1215 | * @return array<number|string,mixed> |
| 1216 | 1216 | */ |
| 1217 | - public static function arrayRemoveValues(array $sourceArray, array $values, bool $keepKeys=false) : array |
|
| 1217 | + public static function arrayRemoveValues(array $sourceArray, array $values, bool $keepKeys = false) : array |
|
| 1218 | 1218 | { |
| 1219 | 1219 | return ConvertHelper_Array::removeValues($sourceArray, $values, $keepKeys); |
| 1220 | 1220 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | public function __construct() |
| 73 | 73 | { |
| 74 | - if(class_exists('\AppLocalize\Localization')) { |
|
| 74 | + if (class_exists('\AppLocalize\Localization')) { |
|
| 75 | 75 | \AppLocalize\Localization::onLocaleChanged(array($this, 'handle_localeChanged')); |
| 76 | 76 | } |
| 77 | 77 | } |
@@ -133,11 +133,11 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | $epoch = 'past'; |
| 135 | 135 | $key = 'singular'; |
| 136 | - if($this->dateDiff > 1) { |
|
| 136 | + if ($this->dateDiff > 1) { |
|
| 137 | 137 | $key = 'plural'; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - if($this->future) { |
|
| 140 | + if ($this->future) { |
|
| 141 | 141 | $epoch = 'future'; |
| 142 | 142 | } |
| 143 | 143 | |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | protected function initTexts() |
| 152 | 152 | { |
| 153 | - if(isset(self::$texts)) { |
|
| 153 | + if (isset(self::$texts)) { |
|
| 154 | 154 | return; |
| 155 | 155 | } |
| 156 | 156 | |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | $day = (int)date("j", $this->dateTo); |
| 237 | 237 | $year = (int)date("Y", $this->dateFrom); |
| 238 | 238 | |
| 239 | - while(mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
| 239 | + while (mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
| 240 | 240 | { |
| 241 | 241 | $months_difference++; |
| 242 | 242 | } |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | |
| 257 | 257 | protected function resolveCalculations() : void |
| 258 | 258 | { |
| 259 | - if(!isset($this->dateFrom)) |
|
| 259 | + if (!isset($this->dateFrom)) |
|
| 260 | 260 | { |
| 261 | 261 | throw new ConvertHelper_Exception( |
| 262 | 262 | 'No date from has been specified.', |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | // no date to set? Assume we want to use today. |
| 269 | - if(!isset($this->dateTo)) |
|
| 269 | + if (!isset($this->dateTo)) |
|
| 270 | 270 | { |
| 271 | 271 | $this->dateTo = time(); |
| 272 | 272 | } |
@@ -333,7 +333,7 @@ discard block |
||
| 333 | 333 | |
| 334 | 334 | $difference = $this->dateTo - $this->dateFrom; |
| 335 | 335 | |
| 336 | - if($difference < 0) |
|
| 336 | + if ($difference < 0) |
|
| 337 | 337 | { |
| 338 | 338 | $difference = $difference * -1; |
| 339 | 339 | $this->future = true; |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | { |
| 396 | 396 | $converter = new ConvertHelper_DurationConverter(); |
| 397 | 397 | |
| 398 | - if($datefrom instanceof DateTime) |
|
| 398 | + if ($datefrom instanceof DateTime) |
|
| 399 | 399 | { |
| 400 | 400 | $converter->setDateFrom($datefrom); |
| 401 | 401 | } |
@@ -404,11 +404,11 @@ discard block |
||
| 404 | 404 | $converter->setDateFrom(ConvertHelper_Date::fromTimestamp($datefrom)); |
| 405 | 405 | } |
| 406 | 406 | |
| 407 | - if($dateto instanceof DateTime) |
|
| 407 | + if ($dateto instanceof DateTime) |
|
| 408 | 408 | { |
| 409 | 409 | $converter->setDateTo($dateto); |
| 410 | 410 | } |
| 411 | - else if($dateto > 0) |
|
| 411 | + else if ($dateto > 0) |
|
| 412 | 412 | { |
| 413 | 413 | $converter->setDateTo(ConvertHelper_Date::fromTimestamp($dateto)); |
| 414 | 414 | } |
@@ -398,8 +398,7 @@ discard block |
||
| 398 | 398 | if($datefrom instanceof DateTime) |
| 399 | 399 | { |
| 400 | 400 | $converter->setDateFrom($datefrom); |
| 401 | - } |
|
| 402 | - else |
|
| 401 | + } else |
|
| 403 | 402 | { |
| 404 | 403 | $converter->setDateFrom(ConvertHelper_Date::fromTimestamp($datefrom)); |
| 405 | 404 | } |
@@ -407,8 +406,7 @@ discard block |
||
| 407 | 406 | if($dateto instanceof DateTime) |
| 408 | 407 | { |
| 409 | 408 | $converter->setDateTo($dateto); |
| 410 | - } |
|
| 411 | - else if($dateto > 0) |
|
| 409 | + } else if($dateto > 0) |
|
| 412 | 410 | { |
| 413 | 411 | $converter->setDateTo(ConvertHelper_Date::fromTimestamp($dateto)); |
| 414 | 412 | } |
@@ -43,13 +43,13 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -105,8 +105,7 @@ |
||
| 105 | 105 | if($date->format('d.m.Y') === $today->format('d.m.Y')) |
| 106 | 106 | { |
| 107 | 107 | $label = t('Today'); |
| 108 | - } |
|
| 109 | - else |
|
| 108 | + } else |
|
| 110 | 109 | { |
| 111 | 110 | $label = $date->format('d') . '. ' . self::month2string((int)$date->format('m'), $shortMonth) . ' '; |
| 112 | 111 | |
@@ -104,7 +104,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -15,9 +15,9 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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; |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | * @param int $code |
| 34 | 34 | * @param \Exception $previous |
| 35 | 35 | */ |
| 36 | - public function __construct(string $message, $details=null, $code=null, $previous=null) |
|
| 36 | + public function __construct(string $message, $details = null, $code = null, $previous = null) |
|
| 37 | 37 | { |
| 38 | 38 | parent::__construct($message, $code, $previous); |
| 39 | 39 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function getDetails() : string |
| 48 | 48 | { |
| 49 | - if($this->details !== null) { |
|
| 49 | + if ($this->details !== null) { |
|
| 50 | 50 | return $this->details; |
| 51 | 51 | } |
| 52 | 52 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | public function display() : void |
| 60 | 60 | { |
| 61 | - if(!headers_sent()) { |
|
| 61 | + if (!headers_sent()) { |
|
| 62 | 62 | header('Content-type:text/plain; charset=utf-8'); |
| 63 | 63 | } |
| 64 | 64 | |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | { |
| 86 | 86 | throw new BaseException(''); |
| 87 | 87 | } |
| 88 | - catch(BaseException $e) |
|
| 88 | + catch (BaseException $e) |
|
| 89 | 89 | { |
| 90 | 90 | echo self::createInfo($e)->toString(); |
| 91 | 91 | } |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | { |
| 101 | 101 | throw new BaseException(''); |
| 102 | 102 | } |
| 103 | - catch(BaseException $e) |
|
| 103 | + catch (BaseException $e) |
|
| 104 | 104 | { |
| 105 | 105 | echo '<pre style="background:#fff;font-family:monospace;font-size:14px;color:#444;padding:16px;border:solid 1px #999;border-radius:4px;">'; |
| 106 | 106 | echo self::createInfo($e)->toString(); |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | { |
| 69 | 69 | $string = strval($string); |
| 70 | 70 | |
| 71 | - if(!empty($string)) |
|
| 71 | + if (!empty($string)) |
|
| 72 | 72 | { |
| 73 | 73 | $this->strings[] = $string; |
| 74 | 74 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | public function t(string $format, ...$arguments) : StringBuilder |
| 147 | 147 | { |
| 148 | - if(!class_exists('\AppLocalize\Localization')) |
|
| 148 | + if (!class_exists('\AppLocalize\Localization')) |
|
| 149 | 149 | { |
| 150 | 150 | array_unshift($arguments, $format); |
| 151 | 151 | return $this->sf(...$arguments); |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | { |
| 171 | 171 | unset($context); // Only used by the localization parser. |
| 172 | 172 | |
| 173 | - if(!class_exists('\AppLocalize\Localization')) |
|
| 173 | + if (!class_exists('\AppLocalize\Localization')) |
|
| 174 | 174 | { |
| 175 | 175 | array_unshift($arguments, $format); |
| 176 | 176 | return $this->sf(...$arguments); |
@@ -328,9 +328,9 @@ discard block |
||
| 328 | 328 | * @param StringBuilder_Interface|string|NULL $content |
| 329 | 329 | * @return $this |
| 330 | 330 | */ |
| 331 | - public function para($content=null) : StringBuilder |
|
| 331 | + public function para($content = null) : StringBuilder |
|
| 332 | 332 | { |
| 333 | - if($content !== null) { |
|
| 333 | + if ($content !== null) { |
|
| 334 | 334 | return $this->html('<p>')->nospace($content)->html('</p>'); |
| 335 | 335 | } |
| 336 | 336 | |
@@ -345,10 +345,10 @@ discard block |
||
| 345 | 345 | * @param bool $newTab |
| 346 | 346 | * @return $this |
| 347 | 347 | */ |
| 348 | - public function link(string $label, string $url, bool $newTab=false) : StringBuilder |
|
| 348 | + public function link(string $label, string $url, bool $newTab = false) : StringBuilder |
|
| 349 | 349 | { |
| 350 | 350 | $target = ''; |
| 351 | - if($newTab) { |
|
| 351 | + if ($newTab) { |
|
| 352 | 352 | $target = ' target="_blank"'; |
| 353 | 353 | } |
| 354 | 354 | |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | */ |
| 395 | 395 | public function spanned($string, $classes) : StringBuilder |
| 396 | 396 | { |
| 397 | - if(!is_array($classes)) |
|
| 397 | + if (!is_array($classes)) |
|
| 398 | 398 | { |
| 399 | 399 | $classes = array(strval($classes)); |
| 400 | 400 | } |
@@ -68,7 +68,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |