Passed
Pull Request — master (#2)
by
unknown
04:39
created
src/ConvertHelper.php 1 patch
Indentation   +497 added lines, -497 removed lines patch added patch discarded remove patch
@@ -54,13 +54,13 @@  discard block
 block discarded – undo
54 54
         return ConvertHelper_String::tabs2spaces($string, $tabSize);
55 55
     }
56 56
     
57
-   /**
58
-    * Converts spaces to tabs in the specified string.
59
-    * 
60
-    * @param string $string
61
-    * @param int $tabSize The amount of spaces per tab in the source string.
62
-    * @return string
63
-    */
57
+    /**
58
+     * Converts spaces to tabs in the specified string.
59
+     * 
60
+     * @param string $string
61
+     * @param int $tabSize The amount of spaces per tab in the source string.
62
+     * @return string
63
+     */
64 64
     public static function spaces2tabs(string $string, int $tabSize=4) : string
65 65
     {
66 66
         return ConvertHelper_String::spaces2tabs($string, $tabSize);
@@ -78,133 +78,133 @@  discard block
 block discarded – undo
78 78
         return ConvertHelper_String::hidden2visible($string);
79 79
     }
80 80
     
81
-   /**
82
-    * Converts the specified amount of seconds into
83
-    * a human readable string split in months, weeks,
84
-    * days, hours, minutes and seconds.
85
-    *
86
-    * @param float $seconds
87
-    * @return string
88
-    */
81
+    /**
82
+     * Converts the specified amount of seconds into
83
+     * a human readable string split in months, weeks,
84
+     * days, hours, minutes and seconds.
85
+     *
86
+     * @param float $seconds
87
+     * @return string
88
+     */
89 89
     public static function time2string($seconds) : string
90 90
     {
91 91
         $converter = new ConvertHelper_TimeConverter($seconds);
92 92
         return $converter->toString();
93 93
     }
94 94
 
95
-   /**
96
-    * Converts a timestamp into an easily understandable
97
-    * format, e.g. "2 hours", "1 day", "3 months"
98
-    *
99
-    * If you set the date to parameter, the difference
100
-    * will be calculated between the two dates and not
101
-    * the current time.
102
-    *
103
-    * @param integer|DateTime $datefrom
104
-    * @param integer|DateTime $dateto
105
-    * @return string
106
-    */
95
+    /**
96
+     * Converts a timestamp into an easily understandable
97
+     * format, e.g. "2 hours", "1 day", "3 months"
98
+     *
99
+     * If you set the date to parameter, the difference
100
+     * will be calculated between the two dates and not
101
+     * the current time.
102
+     *
103
+     * @param integer|DateTime $datefrom
104
+     * @param integer|DateTime $dateto
105
+     * @return string
106
+     */
107 107
     public static function duration2string($datefrom, $dateto = -1) : string
108 108
     {
109
-         $converter = new ConvertHelper_DurationConverter();
109
+            $converter = new ConvertHelper_DurationConverter();
110 110
          
111
-         if($datefrom instanceof DateTime)
112
-         {
113
-             $converter->setDateFrom($datefrom);
114
-         }
115
-         else
116
-         {
117
-             $converter->setDateFrom(self::timestamp2date($datefrom)); 
118
-         }
111
+            if($datefrom instanceof DateTime)
112
+            {
113
+                $converter->setDateFrom($datefrom);
114
+            }
115
+            else
116
+            {
117
+                $converter->setDateFrom(self::timestamp2date($datefrom)); 
118
+            }
119 119
 
120
-         if($dateto instanceof DateTime)
121
-         {
122
-             $converter->setDateTo($dateto);
123
-         }
124
-         else if($dateto > 0)
125
-         {
126
-             $converter->setDateTo(self::timestamp2date($dateto));
127
-         }
120
+            if($dateto instanceof DateTime)
121
+            {
122
+                $converter->setDateTo($dateto);
123
+            }
124
+            else if($dateto > 0)
125
+            {
126
+                $converter->setDateTo(self::timestamp2date($dateto));
127
+            }
128 128
 
129
-         return $converter->convert();
129
+            return $converter->convert();
130 130
     }
131 131
 
132
-   /**
133
-    * Adds HTML syntax highlighting to the specified SQL string.
134
-    * 
135
-    * @param string $sql
136
-    * @return string
137
-    * @deprecated Use the Highlighter class directly instead.
138
-    * @see Highlighter::sql()
139
-    */
132
+    /**
133
+     * Adds HTML syntax highlighting to the specified SQL string.
134
+     * 
135
+     * @param string $sql
136
+     * @return string
137
+     * @deprecated Use the Highlighter class directly instead.
138
+     * @see Highlighter::sql()
139
+     */
140 140
     public static function highlight_sql(string $sql) : string
141 141
     {
142 142
         return Highlighter::sql($sql);
143 143
     }
144 144
 
145
-   /**
146
-    * Adds HTML syntax highlighting to the specified XML code.
147
-    * 
148
-    * @param string $xml The XML to highlight.
149
-    * @param bool $formatSource Whether to format the source with indentation to make it readable.
150
-    * @return string
151
-    * @deprecated Use the Highlighter class directly instead.
152
-    * @see Highlighter::xml()
153
-    */
145
+    /**
146
+     * Adds HTML syntax highlighting to the specified XML code.
147
+     * 
148
+     * @param string $xml The XML to highlight.
149
+     * @param bool $formatSource Whether to format the source with indentation to make it readable.
150
+     * @return string
151
+     * @deprecated Use the Highlighter class directly instead.
152
+     * @see Highlighter::xml()
153
+     */
154 154
     public static function highlight_xml(string $xml, bool $formatSource=false) : string
155 155
     {
156 156
         return Highlighter::xml($xml, $formatSource);
157 157
     }
158 158
 
159
-   /**
160
-    * @param string $phpCode
161
-    * @return string
162
-    * @deprecated Use the Highlighter class directly instead.
163
-    * @see Highlighter::php()
164
-    */
159
+    /**
160
+     * @param string $phpCode
161
+     * @return string
162
+     * @deprecated Use the Highlighter class directly instead.
163
+     * @see Highlighter::php()
164
+     */
165 165
     public static function highlight_php(string $phpCode) : string
166 166
     {
167 167
         return Highlighter::php($phpCode);
168 168
     }
169 169
     
170
-   /**
171
-    * Converts a number of bytes to a human readable form,
172
-    * e.g. xx Kb / xx Mb / xx Gb
173
-    *
174
-    * @param int $bytes The amount of bytes to convert.
175
-    * @param int $precision The amount of decimals
176
-    * @param int $base The base to calculate with: Base 10 is default (=1000 Bytes in a KB), Base 2 is mainly used for Windows memory (=1024 Bytes in a KB).
177
-    * @return string
178
-    * 
179
-    * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions
180
-    */
170
+    /**
171
+     * Converts a number of bytes to a human readable form,
172
+     * e.g. xx Kb / xx Mb / xx Gb
173
+     *
174
+     * @param int $bytes The amount of bytes to convert.
175
+     * @param int $precision The amount of decimals
176
+     * @param int $base The base to calculate with: Base 10 is default (=1000 Bytes in a KB), Base 2 is mainly used for Windows memory (=1024 Bytes in a KB).
177
+     * @return string
178
+     * 
179
+     * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions
180
+     */
181 181
     public static function bytes2readable(int $bytes, int $precision = 1, int $base = ConvertHelper_StorageSizeEnum::BASE_10) : string
182 182
     {
183 183
         return self::parseBytes($bytes)->toString($precision, $base);
184 184
     }
185 185
     
186
-   /**
187
-    * Parses a number of bytes, and creates a converter instance which
188
-    * allows doing common operations with it.
189
-    * 
190
-    * @param int $bytes
191
-    * @return ConvertHelper_ByteConverter
192
-    */
186
+    /**
187
+     * Parses a number of bytes, and creates a converter instance which
188
+     * allows doing common operations with it.
189
+     * 
190
+     * @param int $bytes
191
+     * @return ConvertHelper_ByteConverter
192
+     */
193 193
     public static function parseBytes(int $bytes) : ConvertHelper_ByteConverter
194 194
     {
195 195
         return new ConvertHelper_ByteConverter($bytes);
196 196
     }
197 197
 
198
-   /**
199
-    * Cuts a text to the specified length if it is longer than the
200
-    * target length. Appends a text to signify it has been cut at 
201
-    * the end of the string.
202
-    * 
203
-    * @param string $text
204
-    * @param int $targetLength
205
-    * @param string $append
206
-    * @return string
207
-    */
198
+    /**
199
+     * Cuts a text to the specified length if it is longer than the
200
+     * target length. Appends a text to signify it has been cut at 
201
+     * the end of the string.
202
+     * 
203
+     * @param string $text
204
+     * @param int $targetLength
205
+     * @param string $append
206
+     * @return string
207
+     */
208 208
     public static function text_cut(string $text, int $targetLength, string $append = '...') : string
209 209
     {
210 210
         return ConvertHelper_String::cutText($text, $targetLength, $append);
@@ -221,14 +221,14 @@  discard block
 block discarded – undo
221 221
         return $info->toString();
222 222
     }
223 223
     
224
-   /**
225
-    * Pretty print_r.
226
-    * 
227
-    * @param mixed $var The variable to dump.
228
-    * @param bool $return Whether to return the dumped code.
229
-    * @param bool $html Whether to style the dump as HTML.
230
-    * @return string
231
-    */
224
+    /**
225
+     * Pretty print_r.
226
+     * 
227
+     * @param mixed $var The variable to dump.
228
+     * @param bool $return Whether to return the dumped code.
229
+     * @param bool $html Whether to style the dump as HTML.
230
+     * @return string
231
+     */
232 232
     public static function print_r($var, bool $return=false, bool $html=true) : string
233 233
     {
234 234
         $result = parseVariable($var)->enableType()->toString();
@@ -249,41 +249,41 @@  discard block
 block discarded – undo
249 249
         return $result;
250 250
     }
251 251
     
252
-   /**
253
-    * Converts a string, number or boolean value to a boolean value.
254
-    *
255
-    * @param mixed $string
256
-    * @throws ConvertHelper_Exception
257
-    * @return bool
258
-    *
259
-    * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING
260
-    */
252
+    /**
253
+     * Converts a string, number or boolean value to a boolean value.
254
+     *
255
+     * @param mixed $string
256
+     * @throws ConvertHelper_Exception
257
+     * @return bool
258
+     *
259
+     * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING
260
+     */
261 261
     public static function string2bool($string) : bool
262 262
     {
263 263
         return ConvertHelper_Bool::fromString($string);
264 264
     }
265 265
 
266
-   /**
267
-    * Whether the specified string is a boolean string or boolean value.
268
-    * Alias for {@link ConvertHelper::isBoolean()}.
269
-    *
270
-    * @param mixed $string
271
-    * @return bool
272
-    * @deprecated
273
-    * @see ConvertHelper::isBoolean()
274
-    */
266
+    /**
267
+     * Whether the specified string is a boolean string or boolean value.
268
+     * Alias for {@link ConvertHelper::isBoolean()}.
269
+     *
270
+     * @param mixed $string
271
+     * @return bool
272
+     * @deprecated
273
+     * @see ConvertHelper::isBoolean()
274
+     */
275 275
     public static function isBooleanString($string) : bool
276 276
     {
277 277
         return self::isBoolean($string);
278 278
     }
279 279
 
280
-   /**
281
-    * Alias for the {@\AppUtils\XMLHelper::string2xml()} method.
282
-    * 
283
-    * @param string $text
284
-    * @return string
285
-    * @deprecated
286
-    */
280
+    /**
281
+     * Alias for the {@\AppUtils\XMLHelper::string2xml()} method.
282
+     * 
283
+     * @param string $text
284
+     * @return string
285
+     * @deprecated
286
+     */
287 287
     public static function text_makeXMLCompliant($text)
288 288
     {
289 289
         return XMLHelper::string2xml($text);
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
 
322 322
         $labelHtml = '<span title="'.$date->format($toolTipDateFormat).'">'.
323 323
                         trim($label).
324
-                     '</span>';
324
+                        '</span>';
325 325
 
326 326
         return $labelHtml;
327 327
     }
@@ -386,36 +386,36 @@  discard block
 block discarded – undo
386 386
         return ConvertHelper_String::transliterate($string, $spaceChar, $lowercase);
387 387
     }
388 388
     
389
-   /**
390
-    * Retrieves the HEX character codes for all control
391
-    * characters that the {@link stripControlCharacters()} 
392
-    * method will remove.
393
-    * 
394
-    * @return string[]
395
-    */
389
+    /**
390
+     * Retrieves the HEX character codes for all control
391
+     * characters that the {@link stripControlCharacters()} 
392
+     * method will remove.
393
+     * 
394
+     * @return string[]
395
+     */
396 396
     public static function getControlCharactersAsHex()
397 397
     {
398 398
         return self::createControlCharacters()->getCharsAsHex();
399 399
     }
400 400
     
401
-   /**
402
-    * Retrieves an array of all control characters that
403
-    * the {@link stripControlCharacters()} method will 
404
-    * remove, as the actual UTF-8 characters.
405
-    * 
406
-    * @return string[]
407
-    */
401
+    /**
402
+     * Retrieves an array of all control characters that
403
+     * the {@link stripControlCharacters()} method will 
404
+     * remove, as the actual UTF-8 characters.
405
+     * 
406
+     * @return string[]
407
+     */
408 408
     public static function getControlCharactersAsUTF8()
409 409
     {
410 410
         return self::createControlCharacters()->getCharsAsUTF8();
411 411
     }
412 412
     
413
-   /**
414
-    * Retrieves all control characters as JSON encoded
415
-    * characters, e.g. "\u200b".
416
-    * 
417
-    * @return string[]
418
-    */
413
+    /**
414
+     * Retrieves all control characters as JSON encoded
415
+     * characters, e.g. "\u200b".
416
+     * 
417
+     * @return string[]
418
+     */
419 419
     public static function getControlCharactersAsJSON()
420 420
     {
421 421
         return self::createControlCharacters()->getCharsAsJSON();
@@ -436,31 +436,31 @@  discard block
 block discarded – undo
436 436
         return self::createControlCharacters()->stripControlCharacters($string);
437 437
     }
438 438
     
439
-   /**
440
-    * Creates the control characters class, used to 
441
-    * work with control characters in strings.
442
-    * 
443
-    * @return ConvertHelper_ControlCharacters
444
-    */
439
+    /**
440
+     * Creates the control characters class, used to 
441
+     * work with control characters in strings.
442
+     * 
443
+     * @return ConvertHelper_ControlCharacters
444
+     */
445 445
     public static function createControlCharacters() : ConvertHelper_ControlCharacters
446 446
     {
447 447
         return new ConvertHelper_ControlCharacters();
448 448
     }
449 449
 
450
-   /**
451
-    * Converts a unicode character to the PHPO notation.
452
-    * 
453
-    * Example:
454
-    * 
455
-    * <pre>unicodeChar2php('"\u0000"')</pre>
456
-    * 
457
-    * Returns
458
-    * 
459
-    * <pre>\x0</pre>
460
-    * 
461
-    * @param string $unicodeChar
462
-    * @return string
463
-    */
450
+    /**
451
+     * Converts a unicode character to the PHPO notation.
452
+     * 
453
+     * Example:
454
+     * 
455
+     * <pre>unicodeChar2php('"\u0000"')</pre>
456
+     * 
457
+     * Returns
458
+     * 
459
+     * <pre>\x0</pre>
460
+     * 
461
+     * @param string $unicodeChar
462
+     * @return string
463
+     */
464 464
     public static function unicodeChar2php(string $unicodeChar) : string 
465 465
     {
466 466
         $unicodeChar = json_decode($unicodeChar);
@@ -570,87 +570,87 @@  discard block
 block discarded – undo
570 570
         return ConvertHelper_Bool::toString($boolean, $yesno);
571 571
     }
572 572
     
573
-   /**
574
-    * Converts an associative array with attribute name > value pairs
575
-    * to an attribute string that can be used in an HTML tag. Empty 
576
-    * attribute values are ignored.
577
-    * 
578
-    * Example:
579
-    * 
580
-    * array2attributeString(array(
581
-    *     'id' => 45,
582
-    *     'href' => 'http://www.mistralys.com'
583
-    * ));
584
-    * 
585
-    * Result:
586
-    * 
587
-    * id="45" href="http://www.mistralys.com"
588
-    * 
589
-    * @param array<string,mixed> $array
590
-    * @return string
591
-    */
573
+    /**
574
+     * Converts an associative array with attribute name > value pairs
575
+     * to an attribute string that can be used in an HTML tag. Empty 
576
+     * attribute values are ignored.
577
+     * 
578
+     * Example:
579
+     * 
580
+     * array2attributeString(array(
581
+     *     'id' => 45,
582
+     *     'href' => 'http://www.mistralys.com'
583
+     * ));
584
+     * 
585
+     * Result:
586
+     * 
587
+     * id="45" href="http://www.mistralys.com"
588
+     * 
589
+     * @param array<string,mixed> $array
590
+     * @return string
591
+     */
592 592
     public static function array2attributeString(array $array) : string
593 593
     {
594 594
         return ConvertHelper_Array::toAttributeString($array);
595 595
     }
596 596
     
597
-   /**
598
-    * Converts a string so it can safely be used in a javascript
599
-    * statement in an HTML tag: uses single quotes around the string
600
-    * and encodes all special characters as needed.
601
-    * 
602
-    * @param string $string
603
-    * @return string
604
-    * @deprecated Use the JSHelper class instead.
605
-    * @see JSHelper::phpVariable2AttributeJS()
606
-    */
597
+    /**
598
+     * Converts a string so it can safely be used in a javascript
599
+     * statement in an HTML tag: uses single quotes around the string
600
+     * and encodes all special characters as needed.
601
+     * 
602
+     * @param string $string
603
+     * @return string
604
+     * @deprecated Use the JSHelper class instead.
605
+     * @see JSHelper::phpVariable2AttributeJS()
606
+     */
607 607
     public static function string2attributeJS(string $string) : string
608 608
     {
609 609
         return JSHelper::phpVariable2AttributeJS($string);
610 610
     }
611 611
     
612
-   /**
613
-    * Checks if the specified string is a boolean value, which
614
-    * includes string representations of boolean values, like 
615
-    * <code>yes</code> or <code>no</code>, and <code>true</code>
616
-    * or <code>false</code>.
617
-    * 
618
-    * @param mixed $value
619
-    * @return boolean
620
-    */
612
+    /**
613
+     * Checks if the specified string is a boolean value, which
614
+     * includes string representations of boolean values, like 
615
+     * <code>yes</code> or <code>no</code>, and <code>true</code>
616
+     * or <code>false</code>.
617
+     * 
618
+     * @param mixed $value
619
+     * @return boolean
620
+     */
621 621
     public static function isBoolean($value) : bool
622 622
     {
623 623
         return ConvertHelper_Bool::isBoolean($value);
624 624
     }
625 625
     
626
-   /**
627
-    * Converts an associative array to an HTML style attribute value string.
628
-    * 
629
-    * @param array<string,mixed> $subject
630
-    * @return string
631
-    */
626
+    /**
627
+     * Converts an associative array to an HTML style attribute value string.
628
+     * 
629
+     * @param array<string,mixed> $subject
630
+     * @return string
631
+     */
632 632
     public static function array2styleString(array $subject) : string
633 633
     {
634 634
         return ConvertHelper_Array::toStyleString($subject);
635 635
     }
636 636
     
637
-   /**
638
-    * Converts a DateTime object to a timestamp, which
639
-    * is PHP 5.2 compatible.
640
-    * 
641
-    * @param DateTime $date
642
-    * @return integer
643
-    */
637
+    /**
638
+     * Converts a DateTime object to a timestamp, which
639
+     * is PHP 5.2 compatible.
640
+     * 
641
+     * @param DateTime $date
642
+     * @return integer
643
+     */
644 644
     public static function date2timestamp(DateTime $date) : int
645 645
     {
646 646
         return (int)$date->format('U');
647 647
     }
648 648
     
649
-   /**
650
-    * Converts a timestamp into a DateTime instance.
651
-    * @param int $timestamp
652
-    * @return DateTime
653
-    */
649
+    /**
650
+     * Converts a timestamp into a DateTime instance.
651
+     * @param int $timestamp
652
+     * @return DateTime
653
+     */
654 654
     public static function timestamp2date(int $timestamp) : DateTime
655 655
     {
656 656
         $date = new DateTime();
@@ -658,50 +658,50 @@  discard block
 block discarded – undo
658 658
         return $date;
659 659
     }
660 660
     
661
-   /**
662
-    * Strips an absolute path to a file within the application
663
-    * to make the path relative to the application root path.
664
-    * 
665
-    * @param string $path
666
-    * @return string
667
-    * 
668
-    * @see FileHelper::relativizePath()
669
-    * @see FileHelper::relativizePathByDepth()
670
-    */
661
+    /**
662
+     * Strips an absolute path to a file within the application
663
+     * to make the path relative to the application root path.
664
+     * 
665
+     * @param string $path
666
+     * @return string
667
+     * 
668
+     * @see FileHelper::relativizePath()
669
+     * @see FileHelper::relativizePathByDepth()
670
+     */
671 671
     public static function fileRelativize(string $path) : string
672 672
     {
673 673
         return FileHelper::relativizePathByDepth($path);
674 674
     }
675 675
     
676 676
     /**
677
-    * Converts a PHP regex to a javascript RegExp object statement.
678
-    * 
679
-    * NOTE: This is an alias for the JSHelper's `convertRegex` method. 
680
-    * More details are available on its usage there.
681
-    *
682
-    * @param string $regex A PHP preg regex
683
-    * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object.
684
-    * @return array|string Depending on the specified return type.
685
-    * 
686
-    * @see JSHelper::buildRegexStatement()
687
-    */
677
+     * Converts a PHP regex to a javascript RegExp object statement.
678
+     * 
679
+     * NOTE: This is an alias for the JSHelper's `convertRegex` method. 
680
+     * More details are available on its usage there.
681
+     *
682
+     * @param string $regex A PHP preg regex
683
+     * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object.
684
+     * @return array|string Depending on the specified return type.
685
+     * 
686
+     * @see JSHelper::buildRegexStatement()
687
+     */
688 688
     public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT)
689 689
     {
690 690
         return JSHelper::buildRegexStatement($regex, $statementType);
691 691
     }
692 692
     
693
-   /**
694
-    * Converts the specified variable to JSON. Works just
695
-    * like the native `json_encode` method, except that it
696
-    * will trigger an exception on failure, which has the 
697
-    * json error details included in its developer details.
698
-    * 
699
-    * @param mixed $variable
700
-    * @param int $options JSON encode options.
701
-    * @param int $depth 
702
-    * @throws ConvertHelper_Exception
703
-    * @return string
704
-    */
693
+    /**
694
+     * Converts the specified variable to JSON. Works just
695
+     * like the native `json_encode` method, except that it
696
+     * will trigger an exception on failure, which has the 
697
+     * json error details included in its developer details.
698
+     * 
699
+     * @param mixed $variable
700
+     * @param int $options JSON encode options.
701
+     * @param int $depth 
702
+     * @throws ConvertHelper_Exception
703
+     * @return string
704
+     */
705 705
     public static function var2json($variable, int $options=0, int $depth=512) : string
706 706
     {
707 707
         $result = json_encode($variable, $options, $depth);
@@ -736,12 +736,12 @@  discard block
 block discarded – undo
736 736
             ->toString();
737 737
     }
738 738
     
739
-   /**
740
-    * Strips all known UTF byte order marks from the specified string.
741
-    * 
742
-    * @param string $string
743
-    * @return string
744
-    */
739
+    /**
740
+     * Strips all known UTF byte order marks from the specified string.
741
+     * 
742
+     * @param string $string
743
+     * @return string
744
+     */
745 745
     public static function stripUTFBom($string)
746 746
     {
747 747
         $boms = FileHelper::getUTFBOMs();
@@ -756,65 +756,65 @@  discard block
 block discarded – undo
756 756
         return $string;
757 757
     }
758 758
 
759
-   /**
760
-    * Converts a string to valid utf8, regardless
761
-    * of the string's encoding(s).
762
-    * 
763
-    * @param string $string
764
-    * @return string
765
-    */
759
+    /**
760
+     * Converts a string to valid utf8, regardless
761
+     * of the string's encoding(s).
762
+     * 
763
+     * @param string $string
764
+     * @return string
765
+     */
766 766
     public static function string2utf8(string $string) : string
767 767
     {
768 768
         return ConvertHelper_String::toUtf8($string);
769 769
     }
770 770
     
771
-   /**
772
-    * Checks whether the specified string is an ASCII
773
-    * string, without any special or UTF8 characters.
774
-    * Note: empty strings and NULL are considered ASCII.
775
-    * Any variable types other than strings are not.
776
-    * 
777
-    * @param string|float|int|NULL $string
778
-    * @return boolean
779
-    */
771
+    /**
772
+     * Checks whether the specified string is an ASCII
773
+     * string, without any special or UTF8 characters.
774
+     * Note: empty strings and NULL are considered ASCII.
775
+     * Any variable types other than strings are not.
776
+     * 
777
+     * @param string|float|int|NULL $string
778
+     * @return boolean
779
+     */
780 780
     public static function isStringASCII($string) : bool
781 781
     {
782 782
         return ConvertHelper_String::isASCII(strval($string));
783 783
     }
784 784
     
785
-   /**
786
-    * Adds HTML syntax highlighting to an URL.
787
-    * 
788
-    * NOTE: Includes the necessary CSS styles. When
789
-    * highlighting several URLs in the same page,
790
-    * prefer using the `parseURL` function instead.
791
-    * 
792
-    * @param string $url
793
-    * @return string
794
-    * @deprecated Use the Highlighter class directly instead.
795
-    * @see Highlighter
796
-    */
785
+    /**
786
+     * Adds HTML syntax highlighting to an URL.
787
+     * 
788
+     * NOTE: Includes the necessary CSS styles. When
789
+     * highlighting several URLs in the same page,
790
+     * prefer using the `parseURL` function instead.
791
+     * 
792
+     * @param string $url
793
+     * @return string
794
+     * @deprecated Use the Highlighter class directly instead.
795
+     * @see Highlighter
796
+     */
797 797
     public static function highlight_url(string $url) : string
798 798
     {
799 799
         return Highlighter::url($url);
800 800
     }
801 801
 
802
-   /**
803
-    * Calculates a percentage match of the source string with the target string.
804
-    * 
805
-    * Options are:
806
-    * 
807
-    * - maxLevenshtein, default: 10
808
-    *   Any levenshtein results above this value are ignored.
809
-    *   
810
-    * - precision, default: 1
811
-    *   The precision of the percentage float value
812
-    * 
813
-    * @param string $source
814
-    * @param string $target
815
-    * @param array $options
816
-    * @return float
817
-    */
802
+    /**
803
+     * Calculates a percentage match of the source string with the target string.
804
+     * 
805
+     * Options are:
806
+     * 
807
+     * - maxLevenshtein, default: 10
808
+     *   Any levenshtein results above this value are ignored.
809
+     *   
810
+     * - precision, default: 1
811
+     *   The precision of the percentage float value
812
+     * 
813
+     * @param string $source
814
+     * @param string $target
815
+     * @param array $options
816
+     * @return float
817
+     */
818 818
     public static function matchString($source, $target, $options=array())
819 819
     {
820 820
         $defaults = array(
@@ -838,14 +838,14 @@  discard block
 block discarded – undo
838 838
         return round(100 - $percent, $options['precision']);
839 839
     }
840 840
     
841
-   /**
842
-    * Converts a date interval to a human readable string with
843
-    * all necessary time components, e.g. "1 year, 2 months and 4 days".
844
-    * 
845
-    * @param \DateInterval $interval
846
-    * @return string
847
-    * @see ConvertHelper_IntervalConverter
848
-    */
841
+    /**
842
+     * Converts a date interval to a human readable string with
843
+     * all necessary time components, e.g. "1 year, 2 months and 4 days".
844
+     * 
845
+     * @param \DateInterval $interval
846
+     * @return string
847
+     * @see ConvertHelper_IntervalConverter
848
+     */
849 849
     public static function interval2string(\DateInterval $interval) : string
850 850
     {
851 851
         $converter = new ConvertHelper_IntervalConverter();
@@ -860,60 +860,60 @@  discard block
 block discarded – undo
860 860
     
861 861
     const INTERVAL_SECONDS = 'seconds';
862 862
     
863
-   /**
864
-    * Converts an interval to its total amount of days.
865
-    * @param \DateInterval $interval
866
-    * @return int
867
-    */
863
+    /**
864
+     * Converts an interval to its total amount of days.
865
+     * @param \DateInterval $interval
866
+     * @return int
867
+     */
868 868
     public static function interval2days(\DateInterval $interval) : int
869 869
     {
870 870
         return self::interval2total($interval, self::INTERVAL_DAYS);
871 871
     }
872 872
 
873
-   /**
874
-    * Converts an interval to its total amount of hours.
875
-    * @param \DateInterval $interval
876
-    * @return int
877
-    */
873
+    /**
874
+     * Converts an interval to its total amount of hours.
875
+     * @param \DateInterval $interval
876
+     * @return int
877
+     */
878 878
     public static function interval2hours(\DateInterval $interval) : int
879 879
     {
880 880
         return self::interval2total($interval, self::INTERVAL_HOURS);
881 881
     }
882 882
     
883
-   /**
884
-    * Converts an interval to its total amount of minutes. 
885
-    * @param \DateInterval $interval
886
-    * @return int
887
-    */
883
+    /**
884
+     * Converts an interval to its total amount of minutes. 
885
+     * @param \DateInterval $interval
886
+     * @return int
887
+     */
888 888
     public static function interval2minutes(\DateInterval $interval) : int
889 889
     {
890 890
         return self::interval2total($interval, self::INTERVAL_MINUTES);
891 891
     }
892 892
     
893
-   /**
894
-    * Converts an interval to its total amount of seconds.
895
-    * @param \DateInterval $interval
896
-    * @return int
897
-    */    
893
+    /**
894
+     * Converts an interval to its total amount of seconds.
895
+     * @param \DateInterval $interval
896
+     * @return int
897
+     */    
898 898
     public static function interval2seconds(\DateInterval $interval) : int
899 899
     {
900 900
         return self::interval2total($interval, self::INTERVAL_SECONDS);
901 901
     }
902 902
     
903
-   /**
904
-    * Calculates the total amount of days / hours / minutes or seconds
905
-    * of a date interval object (depending in the specified units), and 
906
-    * returns the total amount.
907
-    * 
908
-    * @param \DateInterval $interval
909
-    * @param string $unit What total value to calculate.
910
-    * @return integer
911
-    * 
912
-    * @see ConvertHelper::INTERVAL_SECONDS
913
-    * @see ConvertHelper::INTERVAL_MINUTES
914
-    * @see ConvertHelper::INTERVAL_HOURS
915
-    * @see ConvertHelper::INTERVAL_DAYS
916
-    */
903
+    /**
904
+     * Calculates the total amount of days / hours / minutes or seconds
905
+     * of a date interval object (depending in the specified units), and 
906
+     * returns the total amount.
907
+     * 
908
+     * @param \DateInterval $interval
909
+     * @param string $unit What total value to calculate.
910
+     * @return integer
911
+     * 
912
+     * @see ConvertHelper::INTERVAL_SECONDS
913
+     * @see ConvertHelper::INTERVAL_MINUTES
914
+     * @see ConvertHelper::INTERVAL_HOURS
915
+     * @see ConvertHelper::INTERVAL_DAYS
916
+     */
917 917
     public static function interval2total(\DateInterval $interval, $unit=self::INTERVAL_SECONDS) : int
918 918
     {
919 919
         $total = (int)$interval->format('%a');
@@ -953,13 +953,13 @@  discard block
 block discarded – undo
953 953
         'Sunday'
954 954
     );
955 955
     
956
-   /**
957
-    * Converts a date to the corresponding day name.
958
-    * 
959
-    * @param DateTime $date
960
-    * @param bool $short
961
-    * @return string|NULL
962
-    */
956
+    /**
957
+     * Converts a date to the corresponding day name.
958
+     * 
959
+     * @param DateTime $date
960
+     * @param bool $short
961
+     * @return string|NULL
962
+     */
963 963
     public static function date2dayName(DateTime $date, bool $short=false)
964 964
     {
965 965
         $day = $date->format('l');
@@ -974,21 +974,21 @@  discard block
 block discarded – undo
974 974
         return null;
975 975
     }
976 976
     
977
-   /**
978
-    * Retrieves a list of english day names.
979
-    * @return string[]
980
-    */
977
+    /**
978
+     * Retrieves a list of english day names.
979
+     * @return string[]
980
+     */
981 981
     public static function getDayNamesInvariant()
982 982
     {
983 983
         return self::$daysInvariant;
984 984
     }
985 985
     
986
-   /**
987
-    * Retrieves the day names list for the current locale.
988
-    * 
989
-    * @param bool $short
990
-    * @return array
991
-    */
986
+    /**
987
+     * Retrieves the day names list for the current locale.
988
+     * 
989
+     * @param bool $short
990
+     * @return array
991
+     */
992 992
     public static function getDayNames(bool $short=false) : array
993 993
     {
994 994
         if($short) {
@@ -1035,68 +1035,68 @@  discard block
 block discarded – undo
1035 1035
         return ConvertHelper_Array::implodeWithAnd($list, $sep, $conjunction);
1036 1036
     }
1037 1037
     
1038
-   /**
1039
-    * Splits a string into an array of all characters it is composed of.
1040
-    * Unicode character safe.
1041
-    * 
1042
-    * NOTE: Spaces and newlines (both \r and \n) are also considered single
1043
-    * characters.
1044
-    * 
1045
-    * @param string $string
1046
-    * @return string[]
1047
-    */
1038
+    /**
1039
+     * Splits a string into an array of all characters it is composed of.
1040
+     * Unicode character safe.
1041
+     * 
1042
+     * NOTE: Spaces and newlines (both \r and \n) are also considered single
1043
+     * characters.
1044
+     * 
1045
+     * @param string $string
1046
+     * @return string[]
1047
+     */
1048 1048
     public static function string2array(string $string) : array
1049 1049
     {
1050 1050
         return ConvertHelper_String::toArray($string);
1051 1051
     }
1052 1052
     
1053
-   /**
1054
-    * Checks whether the specified string contains HTML code.
1055
-    * 
1056
-    * @param string $string
1057
-    * @return boolean
1058
-    */
1053
+    /**
1054
+     * Checks whether the specified string contains HTML code.
1055
+     * 
1056
+     * @param string $string
1057
+     * @return boolean
1058
+     */
1059 1059
     public static function isStringHTML(string $string) : bool
1060 1060
     {
1061 1061
         return ConvertHelper_String::isHTML($string);
1062 1062
     }
1063 1063
     
1064
-   /**
1065
-    * UTF8-safe wordwrap method: works like the regular wordwrap
1066
-    * PHP function but compatible with UTF8. Otherwise the lengths
1067
-    * are not calculated correctly.
1068
-    * 
1069
-    * @param string $str
1070
-    * @param int $width
1071
-    * @param string $break
1072
-    * @param bool $cut
1073
-    * @return string
1074
-    */
1064
+    /**
1065
+     * UTF8-safe wordwrap method: works like the regular wordwrap
1066
+     * PHP function but compatible with UTF8. Otherwise the lengths
1067
+     * are not calculated correctly.
1068
+     * 
1069
+     * @param string $str
1070
+     * @param int $width
1071
+     * @param string $break
1072
+     * @param bool $cut
1073
+     * @return string
1074
+     */
1075 1075
     public static function wordwrap(string $str, int $width = 75, string $break = "\n", bool $cut = false) : string 
1076 1076
     {
1077 1077
         return ConvertHelper_String::wordwrap($str, $width, $break, $cut);
1078 1078
     }
1079 1079
     
1080
-   /**
1081
-    * Calculates the byte length of a string, taking into 
1082
-    * account any unicode characters.
1083
-    * 
1084
-    * @param string $string
1085
-    * @return int
1086
-    */
1080
+    /**
1081
+     * Calculates the byte length of a string, taking into 
1082
+     * account any unicode characters.
1083
+     * 
1084
+     * @param string $string
1085
+     * @return int
1086
+     */
1087 1087
     public static function string2bytes(string $string): int
1088 1088
     {
1089 1089
         return ConvertHelper_String::toBytes($string);
1090 1090
     }
1091 1091
     
1092
-   /**
1093
-    * Creates a short, 8-character long hash for the specified string.
1094
-    * 
1095
-    * WARNING: Not cryptographically safe.
1096
-    * 
1097
-    * @param string $string
1098
-    * @return string
1099
-    */
1092
+    /**
1093
+     * Creates a short, 8-character long hash for the specified string.
1094
+     * 
1095
+     * WARNING: Not cryptographically safe.
1096
+     * 
1097
+     * @param string $string
1098
+     * @return string
1099
+     */
1100 1100
     public static function string2shortHash(string $string) : string
1101 1101
     {
1102 1102
         return ConvertHelper_String::toShortHash($string);
@@ -1142,88 +1142,88 @@  discard block
 block discarded – undo
1142 1142
         return ConvertHelper_ThrowableInfo::fromThrowable($e);
1143 1143
     }
1144 1144
     
1145
-   /**
1146
-    * Parses the specified query string like the native 
1147
-    * function <code>parse_str</code>, without the key
1148
-    * naming limitations.
1149
-    * 
1150
-    * Using parse_str, dots or spaces in key names are 
1151
-    * replaced by underscores. This method keeps all names
1152
-    * intact.
1153
-    * 
1154
-    * It still uses the parse_str implementation as it 
1155
-    * is tested and tried, but fixes the parameter names
1156
-    * after parsing, as needed.
1157
-    * 
1158
-    * @param string $queryString
1159
-    * @return array
1160
-    * @see ConvertHelper_QueryParser
1161
-    */
1145
+    /**
1146
+     * Parses the specified query string like the native 
1147
+     * function <code>parse_str</code>, without the key
1148
+     * naming limitations.
1149
+     * 
1150
+     * Using parse_str, dots or spaces in key names are 
1151
+     * replaced by underscores. This method keeps all names
1152
+     * intact.
1153
+     * 
1154
+     * It still uses the parse_str implementation as it 
1155
+     * is tested and tried, but fixes the parameter names
1156
+     * after parsing, as needed.
1157
+     * 
1158
+     * @param string $queryString
1159
+     * @return array
1160
+     * @see ConvertHelper_QueryParser
1161
+     */
1162 1162
     public static function parseQueryString(string $queryString) : array
1163 1163
     {
1164 1164
         $parser = new ConvertHelper_QueryParser();
1165 1165
         return $parser->parse($queryString);
1166 1166
     }
1167 1167
 
1168
-   /**
1169
-    * Searches for needle in the specified string, and returns a list
1170
-    * of all occurrences, including the matched string. The matched 
1171
-    * string is useful when doing a case insensitive search, as it 
1172
-    * shows the exact matched case of needle.
1173
-    *   
1174
-    * @param string $needle
1175
-    * @param string $haystack
1176
-    * @param bool $caseInsensitive
1177
-    * @return ConvertHelper_StringMatch[]
1178
-    */
1168
+    /**
1169
+     * Searches for needle in the specified string, and returns a list
1170
+     * of all occurrences, including the matched string. The matched 
1171
+     * string is useful when doing a case insensitive search, as it 
1172
+     * shows the exact matched case of needle.
1173
+     *   
1174
+     * @param string $needle
1175
+     * @param string $haystack
1176
+     * @param bool $caseInsensitive
1177
+     * @return ConvertHelper_StringMatch[]
1178
+     */
1179 1179
     public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array
1180 1180
     {
1181 1181
         return ConvertHelper_String::findString($needle, $haystack, $caseInsensitive);
1182 1182
     }
1183 1183
     
1184
-   /**
1185
-    * Like explode, but trims all entries, and removes 
1186
-    * empty entries from the resulting array.
1187
-    * 
1188
-    * @param string $delimiter
1189
-    * @param string $string
1190
-    * @return string[]
1191
-    */
1184
+    /**
1185
+     * Like explode, but trims all entries, and removes 
1186
+     * empty entries from the resulting array.
1187
+     * 
1188
+     * @param string $delimiter
1189
+     * @param string $string
1190
+     * @return string[]
1191
+     */
1192 1192
     public static function explodeTrim(string $delimiter, string $string) : array
1193 1193
     {
1194 1194
         return ConvertHelper_String::explodeTrim($delimiter, $string);
1195 1195
     }
1196 1196
     
1197
-   /**
1198
-    * Detects the most used end-of-line character in the subject string.
1199
-    * 
1200
-    * @param string $subjectString The string to check.
1201
-    * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected.
1202
-    */
1197
+    /**
1198
+     * Detects the most used end-of-line character in the subject string.
1199
+     * 
1200
+     * @param string $subjectString The string to check.
1201
+     * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected.
1202
+     */
1203 1203
     public static function detectEOLCharacter(string $subjectString) : ?ConvertHelper_EOL
1204 1204
     {
1205 1205
         return ConvertHelper_EOL::detect($subjectString);
1206 1206
     }
1207 1207
 
1208
-   /**
1209
-    * Removes the specified keys from the target array,
1210
-    * if they exist.
1211
-    * 
1212
-    * @param array $array
1213
-    * @param array $keys
1214
-    */
1208
+    /**
1209
+     * Removes the specified keys from the target array,
1210
+     * if they exist.
1211
+     * 
1212
+     * @param array $array
1213
+     * @param array $keys
1214
+     */
1215 1215
     public static function arrayRemoveKeys(array &$array, array $keys) : void
1216 1216
     {
1217 1217
         ConvertHelper_Array::removeKeys($array, $keys);
1218 1218
     }
1219 1219
     
1220
-   /**
1221
-    * Checks if the specified variable is an integer or a string containing an integer.
1222
-    * Accepts both positive and negative integers.
1223
-    * 
1224
-    * @param mixed $value
1225
-    * @return bool
1226
-    */
1220
+    /**
1221
+     * Checks if the specified variable is an integer or a string containing an integer.
1222
+     * Accepts both positive and negative integers.
1223
+     * 
1224
+     * @param mixed $value
1225
+     * @return bool
1226
+     */
1227 1227
     public static function isInteger($value) : bool
1228 1228
     {
1229 1229
         if(is_int($value)) {
@@ -1243,52 +1243,52 @@  discard block
 block discarded – undo
1243 1243
         return false;    
1244 1244
     }
1245 1245
     
1246
-   /**
1247
-    * Converts an amount of seconds to a DateInterval object.
1248
-    * 
1249
-    * @param int $seconds
1250
-    * @return \DateInterval
1251
-    * @throws ConvertHelper_Exception If the date interval cannot be created.
1252
-    * 
1253
-    * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF
1254
-    */
1246
+    /**
1247
+     * Converts an amount of seconds to a DateInterval object.
1248
+     * 
1249
+     * @param int $seconds
1250
+     * @return \DateInterval
1251
+     * @throws ConvertHelper_Exception If the date interval cannot be created.
1252
+     * 
1253
+     * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF
1254
+     */
1255 1255
     public static function seconds2interval(int $seconds) : \DateInterval
1256 1256
     {
1257 1257
         return ConvertHelper_DateInterval::fromSeconds($seconds)->getInterval();
1258 1258
     }
1259 1259
     
1260
-   /**
1261
-    * Converts a size string like "50 MB" to the corresponding byte size.
1262
-    * It is case insensitive, ignores spaces, and supports both traditional
1263
-    * "MB" and "MiB" notations.
1264
-    * 
1265
-    * @param string $size
1266
-    * @return int
1267
-    */
1260
+    /**
1261
+     * Converts a size string like "50 MB" to the corresponding byte size.
1262
+     * It is case insensitive, ignores spaces, and supports both traditional
1263
+     * "MB" and "MiB" notations.
1264
+     * 
1265
+     * @param string $size
1266
+     * @return int
1267
+     */
1268 1268
     public static function size2bytes(string $size) : int
1269 1269
     {
1270 1270
         return self::parseSize($size)->toBytes();
1271 1271
     }
1272 1272
     
1273
-   /**
1274
-    * Parses a size string like "50 MB" and returns a size notation instance
1275
-    * that has utility methods to access information on it, and convert it.
1276
-    * 
1277
-    * @param string $size
1278
-    * @return ConvertHelper_SizeNotation
1279
-    */
1273
+    /**
1274
+     * Parses a size string like "50 MB" and returns a size notation instance
1275
+     * that has utility methods to access information on it, and convert it.
1276
+     * 
1277
+     * @param string $size
1278
+     * @return ConvertHelper_SizeNotation
1279
+     */
1280 1280
     public static function parseSize(string $size) : ConvertHelper_SizeNotation
1281 1281
     {
1282 1282
         return new ConvertHelper_SizeNotation($size);
1283 1283
     }
1284 1284
     
1285
-   /**
1286
-    * Creates a URL finder instance, which can be used to find
1287
-    * URLs in a string - be it plain text, or HTML.
1288
-    * 
1289
-    * @param string $subject
1290
-    * @return ConvertHelper_URLFinder
1291
-    */
1285
+    /**
1286
+     * Creates a URL finder instance, which can be used to find
1287
+     * URLs in a string - be it plain text, or HTML.
1288
+     * 
1289
+     * @param string $subject
1290
+     * @return ConvertHelper_URLFinder
1291
+     */
1292 1292
     public static function createURLFinder(string $subject) : ConvertHelper_URLFinder
1293 1293
     {
1294 1294
         return new ConvertHelper_URLFinder($subject);
Please login to merge, or discard this patch.