@@ -432,16 +432,16 @@ discard block |
||
| 432 | 432 | return $bytes . ' ' . t('B'); |
| 433 | 433 | } |
| 434 | 434 | |
| 435 | - /** |
|
| 436 | - * Cuts a text to the specified length if it is longer than the |
|
| 437 | - * target length. Appends a text to signify it has been cut at |
|
| 438 | - * the end of the string. |
|
| 439 | - * |
|
| 440 | - * @param string $text |
|
| 441 | - * @param int $targetLength |
|
| 442 | - * @param string $append |
|
| 443 | - * @return string |
|
| 444 | - */ |
|
| 435 | + /** |
|
| 436 | + * Cuts a text to the specified length if it is longer than the |
|
| 437 | + * target length. Appends a text to signify it has been cut at |
|
| 438 | + * the end of the string. |
|
| 439 | + * |
|
| 440 | + * @param string $text |
|
| 441 | + * @param int $targetLength |
|
| 442 | + * @param string $append |
|
| 443 | + * @return string |
|
| 444 | + */ |
|
| 445 | 445 | public static function text_cut(string $text, int $targetLength, string $append = '...') : string |
| 446 | 446 | { |
| 447 | 447 | $length = mb_strlen($text); |
@@ -511,27 +511,27 @@ discard block |
||
| 511 | 511 | return self::$booleanStrings[$string]; |
| 512 | 512 | } |
| 513 | 513 | |
| 514 | - /** |
|
| 515 | - * Whether the specified string is a boolean string or boolean value. |
|
| 516 | - * Alias for {@link ConvertHelper::isBoolean()}. |
|
| 517 | - * |
|
| 518 | - * @param mixed $string |
|
| 519 | - * @return bool |
|
| 520 | - * @deprecated |
|
| 521 | - * @see ConvertHelper::isBoolean() |
|
| 522 | - */ |
|
| 514 | + /** |
|
| 515 | + * Whether the specified string is a boolean string or boolean value. |
|
| 516 | + * Alias for {@link ConvertHelper::isBoolean()}. |
|
| 517 | + * |
|
| 518 | + * @param mixed $string |
|
| 519 | + * @return bool |
|
| 520 | + * @deprecated |
|
| 521 | + * @see ConvertHelper::isBoolean() |
|
| 522 | + */ |
|
| 523 | 523 | public static function isBooleanString($string) : bool |
| 524 | 524 | { |
| 525 | 525 | return self::isBoolean($string); |
| 526 | 526 | } |
| 527 | 527 | |
| 528 | - /** |
|
| 529 | - * Alias for the {@\AppUtils\XMLHelper::string2xml()} method. |
|
| 530 | - * |
|
| 531 | - * @param string $text |
|
| 532 | - * @return string |
|
| 533 | - * @deprecated |
|
| 534 | - */ |
|
| 528 | + /** |
|
| 529 | + * Alias for the {@\AppUtils\XMLHelper::string2xml()} method. |
|
| 530 | + * |
|
| 531 | + * @param string $text |
|
| 532 | + * @return string |
|
| 533 | + * @deprecated |
|
| 534 | + */ |
|
| 535 | 535 | public static function text_makeXMLCompliant($text) |
| 536 | 536 | { |
| 537 | 537 | return XMLHelper::string2xml($text); |
@@ -633,13 +633,13 @@ discard block |
||
| 633 | 633 | return $translit->convert($string); |
| 634 | 634 | } |
| 635 | 635 | |
| 636 | - /** |
|
| 637 | - * Retrieves the HEX character codes for all control |
|
| 638 | - * characters that the {@link stripControlCharacters()} |
|
| 639 | - * method will remove. |
|
| 640 | - * |
|
| 641 | - * @return string[] |
|
| 642 | - */ |
|
| 636 | + /** |
|
| 637 | + * Retrieves the HEX character codes for all control |
|
| 638 | + * characters that the {@link stripControlCharacters()} |
|
| 639 | + * method will remove. |
|
| 640 | + * |
|
| 641 | + * @return string[] |
|
| 642 | + */ |
|
| 643 | 643 | public static function getControlCharactersAsHex() |
| 644 | 644 | { |
| 645 | 645 | $hexAlphabet = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'); |
@@ -675,13 +675,13 @@ discard block |
||
| 675 | 675 | return $stack; |
| 676 | 676 | } |
| 677 | 677 | |
| 678 | - /** |
|
| 679 | - * Retrieves an array of all control characters that |
|
| 680 | - * the {@link stripControlCharacters()} method will |
|
| 681 | - * remove, as the actual UTF-8 characters. |
|
| 682 | - * |
|
| 683 | - * @return string[] |
|
| 684 | - */ |
|
| 678 | + /** |
|
| 679 | + * Retrieves an array of all control characters that |
|
| 680 | + * the {@link stripControlCharacters()} method will |
|
| 681 | + * remove, as the actual UTF-8 characters. |
|
| 682 | + * |
|
| 683 | + * @return string[] |
|
| 684 | + */ |
|
| 685 | 685 | public static function getControlCharactersAsUTF8() |
| 686 | 686 | { |
| 687 | 687 | $chars = self::getControlCharactersAsHex(); |
@@ -694,12 +694,12 @@ discard block |
||
| 694 | 694 | return $result; |
| 695 | 695 | } |
| 696 | 696 | |
| 697 | - /** |
|
| 698 | - * Retrieves all control characters as JSON encoded |
|
| 699 | - * characters, e.g. "\u200b". |
|
| 700 | - * |
|
| 701 | - * @return string[] |
|
| 702 | - */ |
|
| 697 | + /** |
|
| 698 | + * Retrieves all control characters as JSON encoded |
|
| 699 | + * characters, e.g. "\u200b". |
|
| 700 | + * |
|
| 701 | + * @return string[] |
|
| 702 | + */ |
|
| 703 | 703 | public static function getControlCharactersAsJSON() |
| 704 | 704 | { |
| 705 | 705 | $chars = self::getControlCharactersAsHex(); |
@@ -756,20 +756,20 @@ discard block |
||
| 756 | 756 | return preg_replace(self::$controlCharsRegex, '', $string); |
| 757 | 757 | } |
| 758 | 758 | |
| 759 | - /** |
|
| 760 | - * Converts a unicode character to the PHPO notation. |
|
| 761 | - * |
|
| 762 | - * Example: |
|
| 763 | - * |
|
| 764 | - * <pre>unicodeChar2php('"\u0000"')</pre> |
|
| 765 | - * |
|
| 766 | - * Returns |
|
| 767 | - * |
|
| 768 | - * <pre>\x0</pre> |
|
| 769 | - * |
|
| 770 | - * @param string $unicodeChar |
|
| 771 | - * @return string |
|
| 772 | - */ |
|
| 759 | + /** |
|
| 760 | + * Converts a unicode character to the PHPO notation. |
|
| 761 | + * |
|
| 762 | + * Example: |
|
| 763 | + * |
|
| 764 | + * <pre>unicodeChar2php('"\u0000"')</pre> |
|
| 765 | + * |
|
| 766 | + * Returns |
|
| 767 | + * |
|
| 768 | + * <pre>\x0</pre> |
|
| 769 | + * |
|
| 770 | + * @param string $unicodeChar |
|
| 771 | + * @return string |
|
| 772 | + */ |
|
| 773 | 773 | public static function unicodeChar2php($unicodeChar) |
| 774 | 774 | { |
| 775 | 775 | $unicodeChar = json_decode($unicodeChar); |
@@ -892,25 +892,25 @@ discard block |
||
| 892 | 892 | return 'false'; |
| 893 | 893 | } |
| 894 | 894 | |
| 895 | - /** |
|
| 896 | - * Converts an associative array with attribute name > value pairs |
|
| 897 | - * to an attribute string that can be used in an HTML tag. Empty |
|
| 898 | - * attribute values are ignored. |
|
| 899 | - * |
|
| 900 | - * Example: |
|
| 901 | - * |
|
| 902 | - * array2attributeString(array( |
|
| 903 | - * 'id' => 45, |
|
| 904 | - * 'href' => 'http://www.mistralys.com' |
|
| 905 | - * )); |
|
| 906 | - * |
|
| 907 | - * Result: |
|
| 908 | - * |
|
| 909 | - * id="45" href="http://www.mistralys.com" |
|
| 910 | - * |
|
| 911 | - * @param array $array |
|
| 912 | - * @return string |
|
| 913 | - */ |
|
| 895 | + /** |
|
| 896 | + * Converts an associative array with attribute name > value pairs |
|
| 897 | + * to an attribute string that can be used in an HTML tag. Empty |
|
| 898 | + * attribute values are ignored. |
|
| 899 | + * |
|
| 900 | + * Example: |
|
| 901 | + * |
|
| 902 | + * array2attributeString(array( |
|
| 903 | + * 'id' => 45, |
|
| 904 | + * 'href' => 'http://www.mistralys.com' |
|
| 905 | + * )); |
|
| 906 | + * |
|
| 907 | + * Result: |
|
| 908 | + * |
|
| 909 | + * id="45" href="http://www.mistralys.com" |
|
| 910 | + * |
|
| 911 | + * @param array $array |
|
| 912 | + * @return string |
|
| 913 | + */ |
|
| 914 | 914 | public static function array2attributeString($array) |
| 915 | 915 | { |
| 916 | 916 | $tokens = array(); |
@@ -929,14 +929,14 @@ discard block |
||
| 929 | 929 | return ' '.implode(' ', $tokens); |
| 930 | 930 | } |
| 931 | 931 | |
| 932 | - /** |
|
| 933 | - * Converts a string so it can safely be used in a javascript |
|
| 934 | - * statement in an HTML tag: uses single quotes around the string |
|
| 935 | - * and encodes all special characters as needed. |
|
| 936 | - * |
|
| 937 | - * @param string $string |
|
| 938 | - * @return string |
|
| 939 | - */ |
|
| 932 | + /** |
|
| 933 | + * Converts a string so it can safely be used in a javascript |
|
| 934 | + * statement in an HTML tag: uses single quotes around the string |
|
| 935 | + * and encodes all special characters as needed. |
|
| 936 | + * |
|
| 937 | + * @param string $string |
|
| 938 | + * @return string |
|
| 939 | + */ |
|
| 940 | 940 | public static function string2attributeJS($string, $quoted=true) |
| 941 | 941 | { |
| 942 | 942 | $converted = addslashes(htmlspecialchars(strip_tags($string), ENT_QUOTES, 'UTF-8')); |
@@ -947,15 +947,15 @@ discard block |
||
| 947 | 947 | return $converted; |
| 948 | 948 | } |
| 949 | 949 | |
| 950 | - /** |
|
| 951 | - * Checks if the specified string is a boolean value, which |
|
| 952 | - * includes string representations of boolean values, like |
|
| 953 | - * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
| 954 | - * or <code>false</code>. |
|
| 955 | - * |
|
| 956 | - * @param mixed $value |
|
| 957 | - * @return boolean |
|
| 958 | - */ |
|
| 950 | + /** |
|
| 951 | + * Checks if the specified string is a boolean value, which |
|
| 952 | + * includes string representations of boolean values, like |
|
| 953 | + * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
| 954 | + * or <code>false</code>. |
|
| 955 | + * |
|
| 956 | + * @param mixed $value |
|
| 957 | + * @return boolean |
|
| 958 | + */ |
|
| 959 | 959 | public static function isBoolean($value) : bool |
| 960 | 960 | { |
| 961 | 961 | if(is_bool($value)) { |
@@ -969,12 +969,12 @@ discard block |
||
| 969 | 969 | return array_key_exists($value, self::$booleanStrings); |
| 970 | 970 | } |
| 971 | 971 | |
| 972 | - /** |
|
| 973 | - * Converts an associative array to an HTML style attribute value string. |
|
| 974 | - * |
|
| 975 | - * @param array $subject |
|
| 976 | - * @return string |
|
| 977 | - */ |
|
| 972 | + /** |
|
| 973 | + * Converts an associative array to an HTML style attribute value string. |
|
| 974 | + * |
|
| 975 | + * @param array $subject |
|
| 976 | + * @return string |
|
| 977 | + */ |
|
| 978 | 978 | public static function array2styleString(array $subject) : string |
| 979 | 979 | { |
| 980 | 980 | $tokens = array(); |
@@ -985,23 +985,23 @@ discard block |
||
| 985 | 985 | return implode(';', $tokens); |
| 986 | 986 | } |
| 987 | 987 | |
| 988 | - /** |
|
| 989 | - * Converts a DateTime object to a timestamp, which |
|
| 990 | - * is PHP 5.2 compatible. |
|
| 991 | - * |
|
| 992 | - * @param \DateTime $date |
|
| 993 | - * @return integer |
|
| 994 | - */ |
|
| 988 | + /** |
|
| 989 | + * Converts a DateTime object to a timestamp, which |
|
| 990 | + * is PHP 5.2 compatible. |
|
| 991 | + * |
|
| 992 | + * @param \DateTime $date |
|
| 993 | + * @return integer |
|
| 994 | + */ |
|
| 995 | 995 | public static function date2timestamp(\DateTime $date) : int |
| 996 | 996 | { |
| 997 | 997 | return (int)$date->format('U'); |
| 998 | 998 | } |
| 999 | 999 | |
| 1000 | - /** |
|
| 1001 | - * Converts a timestamp into a DateTime instance. |
|
| 1002 | - * @param int $timestamp |
|
| 1003 | - * @return \DateTime |
|
| 1004 | - */ |
|
| 1000 | + /** |
|
| 1001 | + * Converts a timestamp into a DateTime instance. |
|
| 1002 | + * @param int $timestamp |
|
| 1003 | + * @return \DateTime |
|
| 1004 | + */ |
|
| 1005 | 1005 | public static function timestamp2date(int $timestamp) : \DateTime |
| 1006 | 1006 | { |
| 1007 | 1007 | $date = new \DateTime(); |
@@ -1009,50 +1009,50 @@ discard block |
||
| 1009 | 1009 | return $date; |
| 1010 | 1010 | } |
| 1011 | 1011 | |
| 1012 | - /** |
|
| 1013 | - * Strips an absolute path to a file within the application |
|
| 1014 | - * to make the path relative to the application root path. |
|
| 1015 | - * |
|
| 1016 | - * @param string $path |
|
| 1017 | - * @return string |
|
| 1018 | - * |
|
| 1019 | - * @see FileHelper::relativizePath() |
|
| 1020 | - * @see FileHelper::relativizePathByDepth() |
|
| 1021 | - */ |
|
| 1012 | + /** |
|
| 1013 | + * Strips an absolute path to a file within the application |
|
| 1014 | + * to make the path relative to the application root path. |
|
| 1015 | + * |
|
| 1016 | + * @param string $path |
|
| 1017 | + * @return string |
|
| 1018 | + * |
|
| 1019 | + * @see FileHelper::relativizePath() |
|
| 1020 | + * @see FileHelper::relativizePathByDepth() |
|
| 1021 | + */ |
|
| 1022 | 1022 | public static function fileRelativize(string $path) : string |
| 1023 | 1023 | { |
| 1024 | 1024 | return FileHelper::relativizePathByDepth($path); |
| 1025 | 1025 | } |
| 1026 | 1026 | |
| 1027 | 1027 | /** |
| 1028 | - * Converts a PHP regex to a javascript RegExp object statement. |
|
| 1029 | - * |
|
| 1030 | - * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
| 1031 | - * More details are available on its usage there. |
|
| 1032 | - * |
|
| 1033 | - * @param string $regex A PHP preg regex |
|
| 1034 | - * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
| 1035 | - * @return array|string Depending on the specified return type. |
|
| 1036 | - * |
|
| 1037 | - * @see JSHelper::buildRegexStatement() |
|
| 1038 | - */ |
|
| 1028 | + * Converts a PHP regex to a javascript RegExp object statement. |
|
| 1029 | + * |
|
| 1030 | + * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
| 1031 | + * More details are available on its usage there. |
|
| 1032 | + * |
|
| 1033 | + * @param string $regex A PHP preg regex |
|
| 1034 | + * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
| 1035 | + * @return array|string Depending on the specified return type. |
|
| 1036 | + * |
|
| 1037 | + * @see JSHelper::buildRegexStatement() |
|
| 1038 | + */ |
|
| 1039 | 1039 | public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT) |
| 1040 | 1040 | { |
| 1041 | 1041 | return JSHelper::buildRegexStatement($regex, $statementType); |
| 1042 | 1042 | } |
| 1043 | 1043 | |
| 1044 | - /** |
|
| 1045 | - * Converts the specified variable to JSON. Works just |
|
| 1046 | - * like the native `json_encode` method, except that it |
|
| 1047 | - * will trigger an exception on failure, which has the |
|
| 1048 | - * json error details included in its developer details. |
|
| 1049 | - * |
|
| 1050 | - * @param mixed $variable |
|
| 1051 | - * @param int|NULL $options JSON encode options. |
|
| 1052 | - * @param int|NULL $depth |
|
| 1053 | - * @throws ConvertHelper_Exception |
|
| 1054 | - * @return string |
|
| 1055 | - */ |
|
| 1044 | + /** |
|
| 1045 | + * Converts the specified variable to JSON. Works just |
|
| 1046 | + * like the native `json_encode` method, except that it |
|
| 1047 | + * will trigger an exception on failure, which has the |
|
| 1048 | + * json error details included in its developer details. |
|
| 1049 | + * |
|
| 1050 | + * @param mixed $variable |
|
| 1051 | + * @param int|NULL $options JSON encode options. |
|
| 1052 | + * @param int|NULL $depth |
|
| 1053 | + * @throws ConvertHelper_Exception |
|
| 1054 | + * @return string |
|
| 1055 | + */ |
|
| 1056 | 1056 | public static function var2json($variable, int $options=0, int $depth=512) : string |
| 1057 | 1057 | { |
| 1058 | 1058 | $result = json_encode($variable, $options, $depth); |
@@ -1073,12 +1073,12 @@ discard block |
||
| 1073 | 1073 | ); |
| 1074 | 1074 | } |
| 1075 | 1075 | |
| 1076 | - /** |
|
| 1077 | - * Strips all known UTF byte order marks from the specified string. |
|
| 1078 | - * |
|
| 1079 | - * @param string $string |
|
| 1080 | - * @return string |
|
| 1081 | - */ |
|
| 1076 | + /** |
|
| 1077 | + * Strips all known UTF byte order marks from the specified string. |
|
| 1078 | + * |
|
| 1079 | + * @param string $string |
|
| 1080 | + * @return string |
|
| 1081 | + */ |
|
| 1082 | 1082 | public static function stripUTFBom($string) |
| 1083 | 1083 | { |
| 1084 | 1084 | $boms = FileHelper::getUTFBOMs(); |
@@ -1093,13 +1093,13 @@ discard block |
||
| 1093 | 1093 | return $string; |
| 1094 | 1094 | } |
| 1095 | 1095 | |
| 1096 | - /** |
|
| 1097 | - * Converts a string to valid utf8, regardless |
|
| 1098 | - * of the string's encoding(s). |
|
| 1099 | - * |
|
| 1100 | - * @param string $string |
|
| 1101 | - * @return string |
|
| 1102 | - */ |
|
| 1096 | + /** |
|
| 1097 | + * Converts a string to valid utf8, regardless |
|
| 1098 | + * of the string's encoding(s). |
|
| 1099 | + * |
|
| 1100 | + * @param string $string |
|
| 1101 | + * @return string |
|
| 1102 | + */ |
|
| 1103 | 1103 | public static function string2utf8($string) |
| 1104 | 1104 | { |
| 1105 | 1105 | if(!self::isStringASCII($string)) { |
@@ -1109,15 +1109,15 @@ discard block |
||
| 1109 | 1109 | return $string; |
| 1110 | 1110 | } |
| 1111 | 1111 | |
| 1112 | - /** |
|
| 1113 | - * Checks whether the specified string is an ASCII |
|
| 1114 | - * string, without any special or UTF8 characters. |
|
| 1115 | - * Note: empty strings and NULL are considered ASCII. |
|
| 1116 | - * Any variable types other than strings are not. |
|
| 1117 | - * |
|
| 1118 | - * @param mixed $string |
|
| 1119 | - * @return boolean |
|
| 1120 | - */ |
|
| 1112 | + /** |
|
| 1113 | + * Checks whether the specified string is an ASCII |
|
| 1114 | + * string, without any special or UTF8 characters. |
|
| 1115 | + * Note: empty strings and NULL are considered ASCII. |
|
| 1116 | + * Any variable types other than strings are not. |
|
| 1117 | + * |
|
| 1118 | + * @param mixed $string |
|
| 1119 | + * @return boolean |
|
| 1120 | + */ |
|
| 1121 | 1121 | public static function isStringASCII($string) : bool |
| 1122 | 1122 | { |
| 1123 | 1123 | if($string === '' || $string === NULL) { |
@@ -1142,22 +1142,22 @@ discard block |
||
| 1142 | 1142 | return $url; |
| 1143 | 1143 | } |
| 1144 | 1144 | |
| 1145 | - /** |
|
| 1146 | - * Calculates a percentage match of the source string with the target string. |
|
| 1147 | - * |
|
| 1148 | - * Options are: |
|
| 1149 | - * |
|
| 1150 | - * - maxLevenshtein, default: 10 |
|
| 1151 | - * Any levenshtein results above this value are ignored. |
|
| 1152 | - * |
|
| 1153 | - * - precision, default: 1 |
|
| 1154 | - * The precision of the percentage float value |
|
| 1155 | - * |
|
| 1156 | - * @param string $source |
|
| 1157 | - * @param string $target |
|
| 1158 | - * @param array $options |
|
| 1159 | - * @return float |
|
| 1160 | - */ |
|
| 1145 | + /** |
|
| 1146 | + * Calculates a percentage match of the source string with the target string. |
|
| 1147 | + * |
|
| 1148 | + * Options are: |
|
| 1149 | + * |
|
| 1150 | + * - maxLevenshtein, default: 10 |
|
| 1151 | + * Any levenshtein results above this value are ignored. |
|
| 1152 | + * |
|
| 1153 | + * - precision, default: 1 |
|
| 1154 | + * The precision of the percentage float value |
|
| 1155 | + * |
|
| 1156 | + * @param string $source |
|
| 1157 | + * @param string $target |
|
| 1158 | + * @param array $options |
|
| 1159 | + * @return float |
|
| 1160 | + */ |
|
| 1161 | 1161 | public static function matchString($source, $target, $options=array()) |
| 1162 | 1162 | { |
| 1163 | 1163 | $defaults = array( |
@@ -1241,60 +1241,60 @@ discard block |
||
| 1241 | 1241 | |
| 1242 | 1242 | const INTERVAL_SECONDS = 'seconds'; |
| 1243 | 1243 | |
| 1244 | - /** |
|
| 1245 | - * Converts an interval to its total amount of days. |
|
| 1246 | - * @param \DateInterval $interval |
|
| 1247 | - * @return int |
|
| 1248 | - */ |
|
| 1244 | + /** |
|
| 1245 | + * Converts an interval to its total amount of days. |
|
| 1246 | + * @param \DateInterval $interval |
|
| 1247 | + * @return int |
|
| 1248 | + */ |
|
| 1249 | 1249 | public static function interval2days(\DateInterval $interval) : int |
| 1250 | 1250 | { |
| 1251 | 1251 | return self::interval2total($interval, self::INTERVAL_DAYS); |
| 1252 | 1252 | } |
| 1253 | 1253 | |
| 1254 | - /** |
|
| 1255 | - * Converts an interval to its total amount of hours. |
|
| 1256 | - * @param \DateInterval $interval |
|
| 1257 | - * @return int |
|
| 1258 | - */ |
|
| 1254 | + /** |
|
| 1255 | + * Converts an interval to its total amount of hours. |
|
| 1256 | + * @param \DateInterval $interval |
|
| 1257 | + * @return int |
|
| 1258 | + */ |
|
| 1259 | 1259 | public static function interval2hours(\DateInterval $interval) : int |
| 1260 | 1260 | { |
| 1261 | 1261 | return self::interval2total($interval, self::INTERVAL_HOURS); |
| 1262 | 1262 | } |
| 1263 | 1263 | |
| 1264 | - /** |
|
| 1265 | - * Converts an interval to its total amount of minutes. |
|
| 1266 | - * @param \DateInterval $interval |
|
| 1267 | - * @return int |
|
| 1268 | - */ |
|
| 1264 | + /** |
|
| 1265 | + * Converts an interval to its total amount of minutes. |
|
| 1266 | + * @param \DateInterval $interval |
|
| 1267 | + * @return int |
|
| 1268 | + */ |
|
| 1269 | 1269 | public static function interval2minutes(\DateInterval $interval) : int |
| 1270 | 1270 | { |
| 1271 | 1271 | return self::interval2total($interval, self::INTERVAL_MINUTES); |
| 1272 | 1272 | } |
| 1273 | 1273 | |
| 1274 | - /** |
|
| 1275 | - * Converts an interval to its total amount of seconds. |
|
| 1276 | - * @param \DateInterval $interval |
|
| 1277 | - * @return int |
|
| 1278 | - */ |
|
| 1274 | + /** |
|
| 1275 | + * Converts an interval to its total amount of seconds. |
|
| 1276 | + * @param \DateInterval $interval |
|
| 1277 | + * @return int |
|
| 1278 | + */ |
|
| 1279 | 1279 | public static function interval2seconds(\DateInterval $interval) : int |
| 1280 | 1280 | { |
| 1281 | 1281 | return self::interval2total($interval, self::INTERVAL_SECONDS); |
| 1282 | 1282 | } |
| 1283 | 1283 | |
| 1284 | - /** |
|
| 1285 | - * Calculates the total amount of days / hours / minutes or seconds |
|
| 1286 | - * of a date interval object (depending in the specified units), and |
|
| 1287 | - * returns the total amount. |
|
| 1288 | - * |
|
| 1289 | - * @param \DateInterval $interval |
|
| 1290 | - * @param string $unit What total value to calculate. |
|
| 1291 | - * @return integer |
|
| 1292 | - * |
|
| 1293 | - * @see ConvertHelper::INTERVAL_SECONDS |
|
| 1294 | - * @see ConvertHelper::INTERVAL_MINUTES |
|
| 1295 | - * @see ConvertHelper::INTERVAL_HOURS |
|
| 1296 | - * @see ConvertHelper::INTERVAL_DAYS |
|
| 1297 | - */ |
|
| 1284 | + /** |
|
| 1285 | + * Calculates the total amount of days / hours / minutes or seconds |
|
| 1286 | + * of a date interval object (depending in the specified units), and |
|
| 1287 | + * returns the total amount. |
|
| 1288 | + * |
|
| 1289 | + * @param \DateInterval $interval |
|
| 1290 | + * @param string $unit What total value to calculate. |
|
| 1291 | + * @return integer |
|
| 1292 | + * |
|
| 1293 | + * @see ConvertHelper::INTERVAL_SECONDS |
|
| 1294 | + * @see ConvertHelper::INTERVAL_MINUTES |
|
| 1295 | + * @see ConvertHelper::INTERVAL_HOURS |
|
| 1296 | + * @see ConvertHelper::INTERVAL_DAYS |
|
| 1297 | + */ |
|
| 1298 | 1298 | public static function interval2total(\DateInterval $interval, $unit=self::INTERVAL_SECONDS) : int |
| 1299 | 1299 | { |
| 1300 | 1300 | $total = $interval->format('%a'); |
@@ -1334,13 +1334,13 @@ discard block |
||
| 1334 | 1334 | 'Sunday' |
| 1335 | 1335 | ); |
| 1336 | 1336 | |
| 1337 | - /** |
|
| 1338 | - * Converts a date to the corresponding day name. |
|
| 1339 | - * |
|
| 1340 | - * @param \DateTime $date |
|
| 1341 | - * @param string $short |
|
| 1342 | - * @return string|NULL |
|
| 1343 | - */ |
|
| 1337 | + /** |
|
| 1338 | + * Converts a date to the corresponding day name. |
|
| 1339 | + * |
|
| 1340 | + * @param \DateTime $date |
|
| 1341 | + * @param string $short |
|
| 1342 | + * @return string|NULL |
|
| 1343 | + */ |
|
| 1344 | 1344 | public static function date2dayName(\DateTime $date, $short=false) |
| 1345 | 1345 | { |
| 1346 | 1346 | $day = $date->format('l'); |
@@ -1355,21 +1355,21 @@ discard block |
||
| 1355 | 1355 | return null; |
| 1356 | 1356 | } |
| 1357 | 1357 | |
| 1358 | - /** |
|
| 1359 | - * Retrieves a list of english day names. |
|
| 1360 | - * @return string[] |
|
| 1361 | - */ |
|
| 1358 | + /** |
|
| 1359 | + * Retrieves a list of english day names. |
|
| 1360 | + * @return string[] |
|
| 1361 | + */ |
|
| 1362 | 1362 | public static function getDayNamesInvariant() |
| 1363 | 1363 | { |
| 1364 | 1364 | return self::$daysInvariant; |
| 1365 | 1365 | } |
| 1366 | 1366 | |
| 1367 | - /** |
|
| 1368 | - * Retrieves the day names list for the current locale. |
|
| 1369 | - * |
|
| 1370 | - * @param string $short |
|
| 1371 | - * @return string[] |
|
| 1372 | - */ |
|
| 1367 | + /** |
|
| 1368 | + * Retrieves the day names list for the current locale. |
|
| 1369 | + * |
|
| 1370 | + * @param string $short |
|
| 1371 | + * @return string[] |
|
| 1372 | + */ |
|
| 1373 | 1373 | public static function getDayNames($short=false) |
| 1374 | 1374 | { |
| 1375 | 1375 | if($short) { |
@@ -1429,16 +1429,16 @@ discard block |
||
| 1429 | 1429 | return $last; |
| 1430 | 1430 | } |
| 1431 | 1431 | |
| 1432 | - /** |
|
| 1433 | - * Splits a string into an array of all characters it is composed of. |
|
| 1434 | - * Unicode character safe. |
|
| 1435 | - * |
|
| 1436 | - * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
| 1437 | - * characters. |
|
| 1438 | - * |
|
| 1439 | - * @param string $string |
|
| 1440 | - * @return array |
|
| 1441 | - */ |
|
| 1432 | + /** |
|
| 1433 | + * Splits a string into an array of all characters it is composed of. |
|
| 1434 | + * Unicode character safe. |
|
| 1435 | + * |
|
| 1436 | + * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
| 1437 | + * characters. |
|
| 1438 | + * |
|
| 1439 | + * @param string $string |
|
| 1440 | + * @return array |
|
| 1441 | + */ |
|
| 1442 | 1442 | public static function string2array(string $string) : array |
| 1443 | 1443 | { |
| 1444 | 1444 | $result = preg_split('//u', $string, null, PREG_SPLIT_NO_EMPTY); |
@@ -1449,12 +1449,12 @@ discard block |
||
| 1449 | 1449 | return array(); |
| 1450 | 1450 | } |
| 1451 | 1451 | |
| 1452 | - /** |
|
| 1453 | - * Checks whether the specified string contains HTML code. |
|
| 1454 | - * |
|
| 1455 | - * @param string $string |
|
| 1456 | - * @return boolean |
|
| 1457 | - */ |
|
| 1452 | + /** |
|
| 1453 | + * Checks whether the specified string contains HTML code. |
|
| 1454 | + * |
|
| 1455 | + * @param string $string |
|
| 1456 | + * @return boolean |
|
| 1457 | + */ |
|
| 1458 | 1458 | public static function isStringHTML(string $string) : bool |
| 1459 | 1459 | { |
| 1460 | 1460 | if(preg_match('%<[a-z/][\s\S]*>%siU', $string)) { |
@@ -1469,18 +1469,18 @@ discard block |
||
| 1469 | 1469 | return false; |
| 1470 | 1470 | } |
| 1471 | 1471 | |
| 1472 | - /** |
|
| 1473 | - * UTF8-safe wordwrap method: works like the regular wordwrap |
|
| 1474 | - * PHP function but compatible with UTF8. Otherwise the lengths |
|
| 1475 | - * are no calculated correctly. |
|
| 1476 | - * |
|
| 1477 | - * @param string $str |
|
| 1478 | - * @param int $width |
|
| 1479 | - * @param string $break |
|
| 1480 | - * @param bool $cut |
|
| 1481 | - * @return string |
|
| 1482 | - * @see https://stackoverflow.com/a/4988494/2298192 |
|
| 1483 | - */ |
|
| 1472 | + /** |
|
| 1473 | + * UTF8-safe wordwrap method: works like the regular wordwrap |
|
| 1474 | + * PHP function but compatible with UTF8. Otherwise the lengths |
|
| 1475 | + * are no calculated correctly. |
|
| 1476 | + * |
|
| 1477 | + * @param string $str |
|
| 1478 | + * @param int $width |
|
| 1479 | + * @param string $break |
|
| 1480 | + * @param bool $cut |
|
| 1481 | + * @return string |
|
| 1482 | + * @see https://stackoverflow.com/a/4988494/2298192 |
|
| 1483 | + */ |
|
| 1484 | 1484 | public static function wordwrap($str, $width = 75, $break = "\n", $cut = false) |
| 1485 | 1485 | { |
| 1486 | 1486 | $lines = explode($break, $str); |
@@ -1526,27 +1526,27 @@ discard block |
||
| 1526 | 1526 | return implode($break, $lines); |
| 1527 | 1527 | } |
| 1528 | 1528 | |
| 1529 | - /** |
|
| 1530 | - * Calculates the byte length of a string, taking into |
|
| 1531 | - * account any unicode characters. |
|
| 1532 | - * |
|
| 1533 | - * @param string $string |
|
| 1534 | - * @return int |
|
| 1535 | - * @see https://stackoverflow.com/a/9718273/2298192 |
|
| 1536 | - */ |
|
| 1529 | + /** |
|
| 1530 | + * Calculates the byte length of a string, taking into |
|
| 1531 | + * account any unicode characters. |
|
| 1532 | + * |
|
| 1533 | + * @param string $string |
|
| 1534 | + * @return int |
|
| 1535 | + * @see https://stackoverflow.com/a/9718273/2298192 |
|
| 1536 | + */ |
|
| 1537 | 1537 | public static function string2bytes($string) |
| 1538 | 1538 | { |
| 1539 | 1539 | return mb_strlen($string, '8bit'); |
| 1540 | 1540 | } |
| 1541 | 1541 | |
| 1542 | - /** |
|
| 1543 | - * Creates a short, 8-character long hash for the specified string. |
|
| 1544 | - * |
|
| 1545 | - * WARNING: Not cryptographically safe. |
|
| 1546 | - * |
|
| 1547 | - * @param string $string |
|
| 1548 | - * @return string |
|
| 1549 | - */ |
|
| 1542 | + /** |
|
| 1543 | + * Creates a short, 8-character long hash for the specified string. |
|
| 1544 | + * |
|
| 1545 | + * WARNING: Not cryptographically safe. |
|
| 1546 | + * |
|
| 1547 | + * @param string $string |
|
| 1548 | + * @return string |
|
| 1549 | + */ |
|
| 1550 | 1550 | public static function string2shortHash($string) |
| 1551 | 1551 | { |
| 1552 | 1552 | return hash('crc32', $string, false); |
@@ -1572,23 +1572,23 @@ discard block |
||
| 1572 | 1572 | return ConvertHelper_ThrowableInfo::fromThrowable($e); |
| 1573 | 1573 | } |
| 1574 | 1574 | |
| 1575 | - /** |
|
| 1576 | - * Parses the specified query string like the native |
|
| 1577 | - * function <code>parse_str</code>, without the key |
|
| 1578 | - * naming limitations. |
|
| 1579 | - * |
|
| 1580 | - * Using parse_str, dots or spaces in key names are |
|
| 1581 | - * replaced by underscores. This method keeps all names |
|
| 1582 | - * intact. |
|
| 1583 | - * |
|
| 1584 | - * It still uses the parse_str implementation as it |
|
| 1585 | - * is tested and tried, but fixes the parameter names |
|
| 1586 | - * after parsing, as needed. |
|
| 1587 | - * |
|
| 1588 | - * @param string $queryString |
|
| 1589 | - * @return array |
|
| 1590 | - * @see https://www.php.net/manual/en/function.parse-str.php |
|
| 1591 | - */ |
|
| 1575 | + /** |
|
| 1576 | + * Parses the specified query string like the native |
|
| 1577 | + * function <code>parse_str</code>, without the key |
|
| 1578 | + * naming limitations. |
|
| 1579 | + * |
|
| 1580 | + * Using parse_str, dots or spaces in key names are |
|
| 1581 | + * replaced by underscores. This method keeps all names |
|
| 1582 | + * intact. |
|
| 1583 | + * |
|
| 1584 | + * It still uses the parse_str implementation as it |
|
| 1585 | + * is tested and tried, but fixes the parameter names |
|
| 1586 | + * after parsing, as needed. |
|
| 1587 | + * |
|
| 1588 | + * @param string $queryString |
|
| 1589 | + * @return array |
|
| 1590 | + * @see https://www.php.net/manual/en/function.parse-str.php |
|
| 1591 | + */ |
|
| 1592 | 1592 | public static function parseQueryString(string $queryString) : array |
| 1593 | 1593 | { |
| 1594 | 1594 | // allow HTML entities notation |
@@ -1628,16 +1628,16 @@ discard block |
||
| 1628 | 1628 | $placeholders = array(); |
| 1629 | 1629 | foreach($paramNames as $paramName) |
| 1630 | 1630 | { |
| 1631 | - // create a unique placeholder name |
|
| 1632 | - $placeholder = '__PLACEHOLDER'.$counter.'__'; |
|
| 1631 | + // create a unique placeholder name |
|
| 1632 | + $placeholder = '__PLACEHOLDER'.$counter.'__'; |
|
| 1633 | 1633 | |
| 1634 | - // store the placeholder name to replace later |
|
| 1635 | - $table[$placeholder] = $paramName; |
|
| 1634 | + // store the placeholder name to replace later |
|
| 1635 | + $table[$placeholder] = $paramName; |
|
| 1636 | 1636 | |
| 1637 | - // add the placeholder to replace in the query string before parsing |
|
| 1638 | - $placeholders[$paramName.'='] = $placeholder.'='; |
|
| 1637 | + // add the placeholder to replace in the query string before parsing |
|
| 1638 | + $placeholders[$paramName.'='] = $placeholder.'='; |
|
| 1639 | 1639 | |
| 1640 | - $counter++; |
|
| 1640 | + $counter++; |
|
| 1641 | 1641 | } |
| 1642 | 1642 | |
| 1643 | 1643 | // next challenge: replacing the parameter names by placeholders |
@@ -1664,23 +1664,23 @@ discard block |
||
| 1664 | 1664 | |
| 1665 | 1665 | foreach($parsed as $name => $value) |
| 1666 | 1666 | { |
| 1667 | - $keep[$table[$name]] = $value; |
|
| 1667 | + $keep[$table[$name]] = $value; |
|
| 1668 | 1668 | } |
| 1669 | 1669 | |
| 1670 | 1670 | return $keep; |
| 1671 | 1671 | } |
| 1672 | 1672 | |
| 1673 | - /** |
|
| 1674 | - * Searches for needle in the specified string, and returns a list |
|
| 1675 | - * of all occurrences, including the matched string. The matched |
|
| 1676 | - * string is useful when doing a case insensitive search, as it |
|
| 1677 | - * shows the exact matched case of needle. |
|
| 1678 | - * |
|
| 1679 | - * @param string $needle |
|
| 1680 | - * @param string $haystack |
|
| 1681 | - * @param bool $caseInsensitive |
|
| 1682 | - * @return ConvertHelper_StringMatch[] |
|
| 1683 | - */ |
|
| 1673 | + /** |
|
| 1674 | + * Searches for needle in the specified string, and returns a list |
|
| 1675 | + * of all occurrences, including the matched string. The matched |
|
| 1676 | + * string is useful when doing a case insensitive search, as it |
|
| 1677 | + * shows the exact matched case of needle. |
|
| 1678 | + * |
|
| 1679 | + * @param string $needle |
|
| 1680 | + * @param string $haystack |
|
| 1681 | + * @param bool $caseInsensitive |
|
| 1682 | + * @return ConvertHelper_StringMatch[] |
|
| 1683 | + */ |
|
| 1684 | 1684 | public static function findString(string $needle, string $haystack, bool $caseInsensitive=false) |
| 1685 | 1685 | { |
| 1686 | 1686 | if($needle === '') { |
@@ -1706,14 +1706,14 @@ discard block |
||
| 1706 | 1706 | return $positions; |
| 1707 | 1707 | } |
| 1708 | 1708 | |
| 1709 | - /** |
|
| 1710 | - * Like explode, but trims all entries, and removes |
|
| 1711 | - * empty entries from the resulting array. |
|
| 1712 | - * |
|
| 1713 | - * @param string $delimiter |
|
| 1714 | - * @param string $string |
|
| 1715 | - * @return string[] |
|
| 1716 | - */ |
|
| 1709 | + /** |
|
| 1710 | + * Like explode, but trims all entries, and removes |
|
| 1711 | + * empty entries from the resulting array. |
|
| 1712 | + * |
|
| 1713 | + * @param string $delimiter |
|
| 1714 | + * @param string $string |
|
| 1715 | + * @return string[] |
|
| 1716 | + */ |
|
| 1717 | 1717 | public static function explodeTrim(string $delimiter, string $string) : array |
| 1718 | 1718 | { |
| 1719 | 1719 | if(empty($string) || empty($delimiter)) { |
@@ -1735,12 +1735,12 @@ discard block |
||
| 1735 | 1735 | |
| 1736 | 1736 | protected static $eolChars; |
| 1737 | 1737 | |
| 1738 | - /** |
|
| 1739 | - * Detects the most used end-of-line character in the subject string. |
|
| 1740 | - * |
|
| 1741 | - * @param string $str The string to check. |
|
| 1742 | - * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
| 1743 | - */ |
|
| 1738 | + /** |
|
| 1739 | + * Detects the most used end-of-line character in the subject string. |
|
| 1740 | + * |
|
| 1741 | + * @param string $str The string to check. |
|
| 1742 | + * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
| 1743 | + */ |
|
| 1744 | 1744 | public static function detectEOLCharacter(string $subjectString) : ?ConvertHelper_EOL |
| 1745 | 1745 | { |
| 1746 | 1746 | if(empty($subjectString)) { |
@@ -1752,27 +1752,27 @@ discard block |
||
| 1752 | 1752 | $cr = chr((int)hexdec('0d')); |
| 1753 | 1753 | $lf = chr((int)hexdec('0a')); |
| 1754 | 1754 | |
| 1755 | - self::$eolChars = array( |
|
| 1756 | - array( |
|
| 1757 | - 'char' => $cr.$lf, |
|
| 1758 | - 'type' => ConvertHelper_EOL::TYPE_CRLF, |
|
| 1759 | - 'description' => t('Carriage return followed by a line feed'), |
|
| 1760 | - ), |
|
| 1761 | - array( |
|
| 1762 | - 'char' => $lf.$cr, |
|
| 1763 | - 'type' => ConvertHelper_EOL::TYPE_LFCR, |
|
| 1764 | - 'description' => t('Line feed followed by a carriage return'), |
|
| 1765 | - ), |
|
| 1766 | - array( |
|
| 1767 | - 'char' => $lf, |
|
| 1768 | - 'type' => ConvertHelper_EOL::TYPE_LF, |
|
| 1769 | - 'description' => t('Line feed'), |
|
| 1770 | - ), |
|
| 1771 | - array( |
|
| 1772 | - 'char' => $cr, |
|
| 1773 | - 'type' => ConvertHelper_EOL::TYPE_CR, |
|
| 1774 | - 'description' => t('Carriage Return'), |
|
| 1775 | - ), |
|
| 1755 | + self::$eolChars = array( |
|
| 1756 | + array( |
|
| 1757 | + 'char' => $cr.$lf, |
|
| 1758 | + 'type' => ConvertHelper_EOL::TYPE_CRLF, |
|
| 1759 | + 'description' => t('Carriage return followed by a line feed'), |
|
| 1760 | + ), |
|
| 1761 | + array( |
|
| 1762 | + 'char' => $lf.$cr, |
|
| 1763 | + 'type' => ConvertHelper_EOL::TYPE_LFCR, |
|
| 1764 | + 'description' => t('Line feed followed by a carriage return'), |
|
| 1765 | + ), |
|
| 1766 | + array( |
|
| 1767 | + 'char' => $lf, |
|
| 1768 | + 'type' => ConvertHelper_EOL::TYPE_LF, |
|
| 1769 | + 'description' => t('Line feed'), |
|
| 1770 | + ), |
|
| 1771 | + array( |
|
| 1772 | + 'char' => $cr, |
|
| 1773 | + 'type' => ConvertHelper_EOL::TYPE_CR, |
|
| 1774 | + 'description' => t('Carriage Return'), |
|
| 1775 | + ), |
|
| 1776 | 1776 | ); |
| 1777 | 1777 | } |
| 1778 | 1778 | |
@@ -1800,13 +1800,13 @@ discard block |
||
| 1800 | 1800 | ); |
| 1801 | 1801 | } |
| 1802 | 1802 | |
| 1803 | - /** |
|
| 1804 | - * Removes the specified keys from the target array, |
|
| 1805 | - * if they exist. |
|
| 1806 | - * |
|
| 1807 | - * @param array $array |
|
| 1808 | - * @param array $keys |
|
| 1809 | - */ |
|
| 1803 | + /** |
|
| 1804 | + * Removes the specified keys from the target array, |
|
| 1805 | + * if they exist. |
|
| 1806 | + * |
|
| 1807 | + * @param array $array |
|
| 1808 | + * @param array $keys |
|
| 1809 | + */ |
|
| 1810 | 1810 | public static function arrayRemoveKeys(array &$array, array $keys) : void |
| 1811 | 1811 | { |
| 1812 | 1812 | foreach($keys as $key) |
@@ -1817,13 +1817,13 @@ discard block |
||
| 1817 | 1817 | } |
| 1818 | 1818 | } |
| 1819 | 1819 | |
| 1820 | - /** |
|
| 1821 | - * Checks if the specified variable is an integer or a string containing an integer. |
|
| 1822 | - * Accepts both positive and negative integers. |
|
| 1823 | - * |
|
| 1824 | - * @param mixed $value |
|
| 1825 | - * @return bool |
|
| 1826 | - */ |
|
| 1820 | + /** |
|
| 1821 | + * Checks if the specified variable is an integer or a string containing an integer. |
|
| 1822 | + * Accepts both positive and negative integers. |
|
| 1823 | + * |
|
| 1824 | + * @param mixed $value |
|
| 1825 | + * @return bool |
|
| 1826 | + */ |
|
| 1827 | 1827 | public static function isInteger($value) : bool |
| 1828 | 1828 | { |
| 1829 | 1829 | if(is_int($value)) { |
@@ -1843,15 +1843,15 @@ discard block |
||
| 1843 | 1843 | return false; |
| 1844 | 1844 | } |
| 1845 | 1845 | |
| 1846 | - /** |
|
| 1847 | - * Converts an amount of seconds to a DateInterval object. |
|
| 1848 | - * |
|
| 1849 | - * @param int $seconds |
|
| 1850 | - * @return \DateInterval |
|
| 1851 | - * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
| 1852 | - * |
|
| 1853 | - * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
| 1854 | - */ |
|
| 1846 | + /** |
|
| 1847 | + * Converts an amount of seconds to a DateInterval object. |
|
| 1848 | + * |
|
| 1849 | + * @param int $seconds |
|
| 1850 | + * @return \DateInterval |
|
| 1851 | + * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
| 1852 | + * |
|
| 1853 | + * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
| 1854 | + */ |
|
| 1855 | 1855 | public static function seconds2interval(int $seconds) : \DateInterval |
| 1856 | 1856 | { |
| 1857 | 1857 | // The DateInterval::format() method does not recalculate carry |
@@ -20,17 +20,17 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class BaseException extends \Exception |
| 22 | 22 | { |
| 23 | - /** |
|
| 24 | - * @var string |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * @var string |
|
| 25 | + */ |
|
| 26 | 26 | protected $details; |
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * @param string $message |
|
| 30 | - * @param string $details |
|
| 31 | - * @param int $code |
|
| 32 | - * @param \Exception $previous |
|
| 33 | - */ |
|
| 28 | + /** |
|
| 29 | + * @param string $message |
|
| 30 | + * @param string $details |
|
| 31 | + * @param int $code |
|
| 32 | + * @param \Exception $previous |
|
| 33 | + */ |
|
| 34 | 34 | public function __construct(string $message, $details=null, $code=null, $previous=null) |
| 35 | 35 | { |
| 36 | 36 | parent::__construct($message, $code, $previous); |
@@ -38,10 +38,10 @@ discard block |
||
| 38 | 38 | $this->details = $details; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * Retrieves the detailed error description, if any. |
|
| 43 | - * @return string |
|
| 44 | - */ |
|
| 41 | + /** |
|
| 42 | + * Retrieves the detailed error description, if any. |
|
| 43 | + * @return string |
|
| 44 | + */ |
|
| 45 | 45 | public function getDetails() : string |
| 46 | 46 | { |
| 47 | 47 | if($this->details !== null) { |
@@ -51,9 +51,9 @@ discard block |
||
| 51 | 51 | return ''; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - /** |
|
| 55 | - * Displays pertinent information on the exception. |
|
| 56 | - */ |
|
| 54 | + /** |
|
| 55 | + * Displays pertinent information on the exception. |
|
| 56 | + */ |
|
| 57 | 57 | public function display() |
| 58 | 58 | { |
| 59 | 59 | if(!headers_sent()) { |
@@ -63,20 +63,20 @@ discard block |
||
| 63 | 63 | echo $this->getInfo(); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - /** |
|
| 67 | - * Retrieves information on the exception that can be |
|
| 68 | - * easily accessed. |
|
| 69 | - * |
|
| 70 | - * @return ConvertHelper_ThrowableInfo |
|
| 71 | - */ |
|
| 66 | + /** |
|
| 67 | + * Retrieves information on the exception that can be |
|
| 68 | + * easily accessed. |
|
| 69 | + * |
|
| 70 | + * @return ConvertHelper_ThrowableInfo |
|
| 71 | + */ |
|
| 72 | 72 | public function getInfo() : ConvertHelper_ThrowableInfo |
| 73 | 73 | { |
| 74 | 74 | return ConvertHelper::throwable2info($this); |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - /** |
|
| 78 | - * Dumps a current PHP function trace, as a textonly string. |
|
| 79 | - */ |
|
| 77 | + /** |
|
| 78 | + * Dumps a current PHP function trace, as a textonly string. |
|
| 79 | + */ |
|
| 80 | 80 | public static function dumpTraceAsString() |
| 81 | 81 | { |
| 82 | 82 | try |
@@ -89,9 +89,9 @@ discard block |
||
| 89 | 89 | } |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - /** |
|
| 93 | - * Dumps a current PHP function trace, with HTML styling. |
|
| 94 | - */ |
|
| 92 | + /** |
|
| 93 | + * Dumps a current PHP function trace, with HTML styling. |
|
| 94 | + */ |
|
| 95 | 95 | public static function dumpTraceAsHTML() |
| 96 | 96 | { |
| 97 | 97 | try |
@@ -106,13 +106,13 @@ discard block |
||
| 106 | 106 | } |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - /** |
|
| 110 | - * Creates an exception info instance from a throwable instance. |
|
| 111 | - * |
|
| 112 | - * @param \Throwable $e |
|
| 113 | - * @return ConvertHelper_ThrowableInfo |
|
| 114 | - * @see ConvertHelper::throwable2info() |
|
| 115 | - */ |
|
| 109 | + /** |
|
| 110 | + * Creates an exception info instance from a throwable instance. |
|
| 111 | + * |
|
| 112 | + * @param \Throwable $e |
|
| 113 | + * @return ConvertHelper_ThrowableInfo |
|
| 114 | + * @see ConvertHelper::throwable2info() |
|
| 115 | + */ |
|
| 116 | 116 | public static function createInfo(\Throwable $e) : ConvertHelper_ThrowableInfo |
| 117 | 117 | { |
| 118 | 118 | return ConvertHelper::throwable2info($e); |
@@ -26,19 +26,19 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | trait Traits_Optionable |
| 28 | 28 | { |
| 29 | - /** |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 29 | + /** |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | 32 | protected $options; |
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * Sets an option to the specified value. This can be any |
|
| 36 | - * kind of variable type, including objects, as needed. |
|
| 37 | - * |
|
| 38 | - * @param string $name |
|
| 39 | - * @param mixed $default |
|
| 40 | - * @return Interface_Optionable |
|
| 41 | - */ |
|
| 34 | + /** |
|
| 35 | + * Sets an option to the specified value. This can be any |
|
| 36 | + * kind of variable type, including objects, as needed. |
|
| 37 | + * |
|
| 38 | + * @param string $name |
|
| 39 | + * @param mixed $default |
|
| 40 | + * @return Interface_Optionable |
|
| 41 | + */ |
|
| 42 | 42 | public function setOption(string $name, $value) |
| 43 | 43 | { |
| 44 | 44 | if(!isset($this->options)) { |
@@ -49,13 +49,13 @@ discard block |
||
| 49 | 49 | return $this; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * Sets a collection of options at once, from an |
|
| 54 | - * associative array. |
|
| 55 | - * |
|
| 56 | - * @param array $options |
|
| 57 | - * @return Interface_Optionable |
|
| 58 | - */ |
|
| 52 | + /** |
|
| 53 | + * Sets a collection of options at once, from an |
|
| 54 | + * associative array. |
|
| 55 | + * |
|
| 56 | + * @param array $options |
|
| 57 | + * @return Interface_Optionable |
|
| 58 | + */ |
|
| 59 | 59 | public function setOptions(array $options) |
| 60 | 60 | { |
| 61 | 61 | foreach($options as $name => $value) { |
@@ -65,16 +65,16 @@ discard block |
||
| 65 | 65 | return $this; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - /** |
|
| 69 | - * Retrieves an option's value. |
|
| 70 | - * |
|
| 71 | - * NOTE: Use the specialized type getters to ensure an option |
|
| 72 | - * contains the expected type (for ex. getArrayOption()). |
|
| 73 | - * |
|
| 74 | - * @param string $name |
|
| 75 | - * @param mixed $default The default value to return if the option does not exist. |
|
| 76 | - * @return mixed |
|
| 77 | - */ |
|
| 68 | + /** |
|
| 69 | + * Retrieves an option's value. |
|
| 70 | + * |
|
| 71 | + * NOTE: Use the specialized type getters to ensure an option |
|
| 72 | + * contains the expected type (for ex. getArrayOption()). |
|
| 73 | + * |
|
| 74 | + * @param string $name |
|
| 75 | + * @param mixed $default The default value to return if the option does not exist. |
|
| 76 | + * @return mixed |
|
| 77 | + */ |
|
| 78 | 78 | public function getOption(string $name, $default=null) |
| 79 | 79 | { |
| 80 | 80 | if(!isset($this->options)) { |
@@ -88,16 +88,16 @@ discard block |
||
| 88 | 88 | return $default; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - /** |
|
| 92 | - * Enforces that the option value is a string. Numbers are converted |
|
| 93 | - * to string, strings are passed through, and all other types will |
|
| 94 | - * return the default value. The default value is also returned if |
|
| 95 | - * the string is empty. |
|
| 96 | - * |
|
| 97 | - * @param string $name |
|
| 98 | - * @param string $default Used if the option does not exist, is invalid, or empty. |
|
| 99 | - * @return string |
|
| 100 | - */ |
|
| 91 | + /** |
|
| 92 | + * Enforces that the option value is a string. Numbers are converted |
|
| 93 | + * to string, strings are passed through, and all other types will |
|
| 94 | + * return the default value. The default value is also returned if |
|
| 95 | + * the string is empty. |
|
| 96 | + * |
|
| 97 | + * @param string $name |
|
| 98 | + * @param string $default Used if the option does not exist, is invalid, or empty. |
|
| 99 | + * @return string |
|
| 100 | + */ |
|
| 101 | 101 | public function getStringOption(string $name, string $default='') : string |
| 102 | 102 | { |
| 103 | 103 | $value = $this->getOption($name, false); |
@@ -109,15 +109,15 @@ discard block |
||
| 109 | 109 | return $default; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - /** |
|
| 113 | - * Treats the option value as a boolean value: will return |
|
| 114 | - * true if the value actually is a boolean true. |
|
| 115 | - * |
|
| 116 | - * NOTE: boolean string representations are not accepted. |
|
| 117 | - * |
|
| 118 | - * @param string $name |
|
| 119 | - * @return bool |
|
| 120 | - */ |
|
| 112 | + /** |
|
| 113 | + * Treats the option value as a boolean value: will return |
|
| 114 | + * true if the value actually is a boolean true. |
|
| 115 | + * |
|
| 116 | + * NOTE: boolean string representations are not accepted. |
|
| 117 | + * |
|
| 118 | + * @param string $name |
|
| 119 | + * @return bool |
|
| 120 | + */ |
|
| 121 | 121 | public function getBoolOption(string $name, bool $default=false) : bool |
| 122 | 122 | { |
| 123 | 123 | if($this->getOption($name) === true) { |
@@ -127,15 +127,15 @@ discard block |
||
| 127 | 127 | return $default; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - /** |
|
| 131 | - * Treats the option value as an integer value: will return |
|
| 132 | - * valid integer values (also from integer strings), or the |
|
| 133 | - * default value otherwise. |
|
| 134 | - * |
|
| 135 | - * @param string $name |
|
| 136 | - * @param int $default |
|
| 137 | - * @return int |
|
| 138 | - */ |
|
| 130 | + /** |
|
| 131 | + * Treats the option value as an integer value: will return |
|
| 132 | + * valid integer values (also from integer strings), or the |
|
| 133 | + * default value otherwise. |
|
| 134 | + * |
|
| 135 | + * @param string $name |
|
| 136 | + * @param int $default |
|
| 137 | + * @return int |
|
| 138 | + */ |
|
| 139 | 139 | public function getIntOption(string $name, int $default=0) : int |
| 140 | 140 | { |
| 141 | 141 | $value = $this->getOption($name); |
@@ -146,14 +146,14 @@ discard block |
||
| 146 | 146 | return $default; |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - /** |
|
| 150 | - * Treats an option as an array, and returns its value |
|
| 151 | - * only if it contains an array - otherwise, an empty |
|
| 152 | - * array is returned. |
|
| 153 | - * |
|
| 154 | - * @param string $name |
|
| 155 | - * @return array |
|
| 156 | - */ |
|
| 149 | + /** |
|
| 150 | + * Treats an option as an array, and returns its value |
|
| 151 | + * only if it contains an array - otherwise, an empty |
|
| 152 | + * array is returned. |
|
| 153 | + * |
|
| 154 | + * @param string $name |
|
| 155 | + * @return array |
|
| 156 | + */ |
|
| 157 | 157 | public function getArrayOption(string $name) : array |
| 158 | 158 | { |
| 159 | 159 | $val = $this->getOption($name); |
@@ -164,13 +164,13 @@ discard block |
||
| 164 | 164 | return array(); |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | - /** |
|
| 168 | - * Checks whether the specified option exists - even |
|
| 169 | - * if it has a NULL value. |
|
| 170 | - * |
|
| 171 | - * @param string $name |
|
| 172 | - * @return bool |
|
| 173 | - */ |
|
| 167 | + /** |
|
| 168 | + * Checks whether the specified option exists - even |
|
| 169 | + * if it has a NULL value. |
|
| 170 | + * |
|
| 171 | + * @param string $name |
|
| 172 | + * @return bool |
|
| 173 | + */ |
|
| 174 | 174 | public function hasOption(string $name) : bool |
| 175 | 175 | { |
| 176 | 176 | if(!isset($this->options)) { |
@@ -180,10 +180,10 @@ discard block |
||
| 180 | 180 | return array_key_exists($name, $this->options); |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - /** |
|
| 184 | - * Returns all options in one associative array. |
|
| 185 | - * @return array |
|
| 186 | - */ |
|
| 183 | + /** |
|
| 184 | + * Returns all options in one associative array. |
|
| 185 | + * @return array |
|
| 186 | + */ |
|
| 187 | 187 | public function getOptions() : array |
| 188 | 188 | { |
| 189 | 189 | if(!isset($this->options)) { |
@@ -193,24 +193,24 @@ discard block |
||
| 193 | 193 | return $this->options; |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - /** |
|
| 197 | - * Checks whether the option's value is the one specified. |
|
| 198 | - * |
|
| 199 | - * @param string $name |
|
| 200 | - * @param mixed $value |
|
| 201 | - * @return bool |
|
| 202 | - */ |
|
| 196 | + /** |
|
| 197 | + * Checks whether the option's value is the one specified. |
|
| 198 | + * |
|
| 199 | + * @param string $name |
|
| 200 | + * @param mixed $value |
|
| 201 | + * @return bool |
|
| 202 | + */ |
|
| 203 | 203 | public function isOption(string $name, $value) : bool |
| 204 | 204 | { |
| 205 | 205 | return $this->getOption($name) === $value; |
| 206 | 206 | } |
| 207 | 207 | |
| 208 | - /** |
|
| 209 | - * Retrieves the default available options as an |
|
| 210 | - * associative array with option name => value pairs. |
|
| 211 | - * |
|
| 212 | - * @return array |
|
| 213 | - */ |
|
| 208 | + /** |
|
| 209 | + * Retrieves the default available options as an |
|
| 210 | + * associative array with option name => value pairs. |
|
| 211 | + * |
|
| 212 | + * @return array |
|
| 213 | + */ |
|
| 214 | 214 | abstract public function getDefaultOptions() : array; |
| 215 | 215 | } |
| 216 | 216 | |
@@ -228,24 +228,24 @@ discard block |
||
| 228 | 228 | */ |
| 229 | 229 | interface Interface_Optionable |
| 230 | 230 | { |
| 231 | - /** |
|
| 232 | - * @param string $name |
|
| 233 | - * @param mixed $value |
|
| 234 | - * @return Interface_Optionable |
|
| 235 | - */ |
|
| 231 | + /** |
|
| 232 | + * @param string $name |
|
| 233 | + * @param mixed $value |
|
| 234 | + * @return Interface_Optionable |
|
| 235 | + */ |
|
| 236 | 236 | function setOption(string $name, $value); |
| 237 | 237 | |
| 238 | - /** |
|
| 239 | - * @param string $name |
|
| 240 | - * @param mixed $default |
|
| 241 | - * @return Interface_Optionable |
|
| 242 | - */ |
|
| 238 | + /** |
|
| 239 | + * @param string $name |
|
| 240 | + * @param mixed $default |
|
| 241 | + * @return Interface_Optionable |
|
| 242 | + */ |
|
| 243 | 243 | function getOption(string $name, $default=null); |
| 244 | 244 | |
| 245 | - /** |
|
| 246 | - * @param array $options |
|
| 247 | - * @return Interface_Optionable |
|
| 248 | - */ |
|
| 245 | + /** |
|
| 246 | + * @param array $options |
|
| 247 | + * @return Interface_Optionable |
|
| 248 | + */ |
|
| 249 | 249 | function setOptions(array $options); |
| 250 | 250 | function getOptions() : array; |
| 251 | 251 | function isOption(string $name, $value) : bool; |