@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @param int $tabSize The amount of spaces per tab. |
56 | 56 | * @return string |
57 | 57 | */ |
58 | - public static function tabs2spaces(string $string, int $tabSize=4) : string |
|
58 | + public static function tabs2spaces(string $string, int $tabSize = 4) : string |
|
59 | 59 | { |
60 | 60 | return ConvertHelper_String::tabs2spaces($string, $tabSize); |
61 | 61 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * @param int $tabSize The amount of spaces per tab in the source string. |
68 | 68 | * @return string |
69 | 69 | */ |
70 | - public static function spaces2tabs(string $string, int $tabSize=4) : string |
|
70 | + public static function spaces2tabs(string $string, int $tabSize = 4) : string |
|
71 | 71 | { |
72 | 72 | return ConvertHelper_String::spaces2tabs($string, $tabSize); |
73 | 73 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @deprecated Use the Highlighter class directly instead. |
141 | 141 | * @see Highlighter::xml() |
142 | 142 | */ |
143 | - public static function highlight_xml(string $xml, bool $formatSource=false) : string |
|
143 | + public static function highlight_xml(string $xml, bool $formatSource = false) : string |
|
144 | 144 | { |
145 | 145 | return Highlighter::xml($xml, $formatSource); |
146 | 146 | } |
@@ -206,11 +206,11 @@ discard block |
||
206 | 206 | * @param bool $html |
207 | 207 | * @return string |
208 | 208 | */ |
209 | - public static function var_dump($var, bool $html=true) : string |
|
209 | + public static function var_dump($var, bool $html = true) : string |
|
210 | 210 | { |
211 | 211 | $info = parseVariable($var); |
212 | 212 | |
213 | - if($html) { |
|
213 | + if ($html) { |
|
214 | 214 | return $info->toHTML(); |
215 | 215 | } |
216 | 216 | |
@@ -225,11 +225,11 @@ discard block |
||
225 | 225 | * @param bool $html Whether to style the dump as HTML. |
226 | 226 | * @return string |
227 | 227 | */ |
228 | - public static function print_r($var, bool $return=false, bool $html=true) : string |
|
228 | + public static function print_r($var, bool $return = false, bool $html = true) : string |
|
229 | 229 | { |
230 | 230 | $result = parseVariable($var)->enableType()->toString(); |
231 | 231 | |
232 | - if($html) |
|
232 | + if ($html) |
|
233 | 233 | { |
234 | 234 | $result = |
235 | 235 | '<pre style="background:#fff;color:#333;padding:16px;border:solid 1px #bbb;border-radius:4px">'. |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | '</pre>'; |
238 | 238 | } |
239 | 239 | |
240 | - if(!$return) |
|
240 | + if (!$return) |
|
241 | 241 | { |
242 | 242 | echo $result; |
243 | 243 | } |
@@ -419,12 +419,12 @@ discard block |
||
419 | 419 | $output = ''; |
420 | 420 | $split = str_split($unicodeChar); |
421 | 421 | |
422 | - foreach($split as $octet) |
|
422 | + foreach ($split as $octet) |
|
423 | 423 | { |
424 | 424 | $ordInt = ord($octet); |
425 | 425 | // Convert from int (base 10) to hex (base 16), for PHP \x syntax |
426 | 426 | $ordHex = base_convert((string)$ordInt, 10, 16); |
427 | - $output .= '\x' . $ordHex; |
|
427 | + $output .= '\x'.$ordHex; |
|
428 | 428 | } |
429 | 429 | |
430 | 430 | return $output; |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | * |
639 | 639 | * @see JSHelper::buildRegexStatement() |
640 | 640 | */ |
641 | - public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT) : string |
|
641 | + public static function regex2js(string $regex, string $statementType = JSHelper::JS_REGEX_OBJECT) : string |
|
642 | 642 | { |
643 | 643 | return JSHelper::buildRegexStatement($regex, $statementType); |
644 | 644 | } |
@@ -657,11 +657,11 @@ discard block |
||
657 | 657 | * @throws ConvertHelper_Exception |
658 | 658 | * @see ConvertHelper::ERROR_JSON_ENCODE_FAILED |
659 | 659 | */ |
660 | - public static function var2json($variable, int $options=0, int $depth=512) : string |
|
660 | + public static function var2json($variable, int $options = 0, int $depth = 512) : string |
|
661 | 661 | { |
662 | 662 | $result = json_encode($variable, $options, $depth); |
663 | 663 | |
664 | - if($result !== false) { |
|
664 | + if ($result !== false) { |
|
665 | 665 | return $result; |
666 | 666 | } |
667 | 667 | |
@@ -701,12 +701,12 @@ discard block |
||
701 | 701 | { |
702 | 702 | $boms = FileHelper::getUTFBOMs(); |
703 | 703 | |
704 | - foreach($boms as $bomChars) |
|
704 | + foreach ($boms as $bomChars) |
|
705 | 705 | { |
706 | 706 | $length = mb_strlen($bomChars); |
707 | 707 | $text = mb_substr($string, 0, $length); |
708 | 708 | |
709 | - if($text===$bomChars) |
|
709 | + if ($text === $bomChars) |
|
710 | 710 | { |
711 | 711 | return mb_substr($string, $length); |
712 | 712 | } |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | * @see ConvertHelper_TextComparer::OPTION_MAX_LEVENSHTEIN_DISTANCE |
779 | 779 | * @see ConvertHelper_TextComparer::OPTION_PRECISION |
780 | 780 | */ |
781 | - public static function matchString(string $source, string $target, array $options=array()) : float |
|
781 | + public static function matchString(string $source, string $target, array $options = array()) : float |
|
782 | 782 | { |
783 | 783 | return (new ConvertHelper_TextComparer()) |
784 | 784 | ->setOptions($options) |
@@ -856,7 +856,7 @@ discard block |
||
856 | 856 | * @see ConvertHelper::INTERVAL_HOURS |
857 | 857 | * @see ConvertHelper::INTERVAL_DAYS |
858 | 858 | */ |
859 | - public static function interval2total(DateInterval $interval, string $unit=self::INTERVAL_SECONDS) : int |
|
859 | + public static function interval2total(DateInterval $interval, string $unit = self::INTERVAL_SECONDS) : int |
|
860 | 860 | { |
861 | 861 | return ConvertHelper_DateInterval::toTotal($interval, $unit); |
862 | 862 | } |
@@ -868,7 +868,7 @@ discard block |
||
868 | 868 | * @param bool $short |
869 | 869 | * @return string|NULL |
870 | 870 | */ |
871 | - public static function date2dayName(DateTime $date, bool $short=false) : ?string |
|
871 | + public static function date2dayName(DateTime $date, bool $short = false) : ?string |
|
872 | 872 | { |
873 | 873 | return ConvertHelper_Date::toDayName($date, $short); |
874 | 874 | } |
@@ -888,7 +888,7 @@ discard block |
||
888 | 888 | * @param bool $short |
889 | 889 | * @return string[] |
890 | 890 | */ |
891 | - public static function getDayNames(bool $short=false) : array |
|
891 | + public static function getDayNames(bool $short = false) : array |
|
892 | 892 | { |
893 | 893 | return ConvertHelper_Date::getDayNames($short); |
894 | 894 | } |
@@ -1047,7 +1047,7 @@ discard block |
||
1047 | 1047 | * @param bool $caseInsensitive |
1048 | 1048 | * @return ConvertHelper_StringMatch[] |
1049 | 1049 | */ |
1050 | - public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array |
|
1050 | + public static function findString(string $needle, string $haystack, bool $caseInsensitive = false): array |
|
1051 | 1051 | { |
1052 | 1052 | return ConvertHelper_String::findString($needle, $haystack, $caseInsensitive); |
1053 | 1053 | } |
@@ -1097,17 +1097,17 @@ discard block |
||
1097 | 1097 | */ |
1098 | 1098 | public static function isInteger($value) : bool |
1099 | 1099 | { |
1100 | - if(is_int($value)) { |
|
1100 | + if (is_int($value)) { |
|
1101 | 1101 | return true; |
1102 | 1102 | } |
1103 | 1103 | |
1104 | 1104 | // booleans get converted to numbers, so they would |
1105 | 1105 | // actually match the regex. |
1106 | - if(is_bool($value)) { |
|
1106 | + if (is_bool($value)) { |
|
1107 | 1107 | return false; |
1108 | 1108 | } |
1109 | 1109 | |
1110 | - if(is_string($value) && $value !== '') { |
|
1110 | + if (is_string($value) && $value !== '') { |
|
1111 | 1111 | return preg_match('/\A-?\d+\z/', $value) === 1; |
1112 | 1112 | } |
1113 | 1113 | |
@@ -1173,7 +1173,7 @@ discard block |
||
1173 | 1173 | * @param bool $keepKeys |
1174 | 1174 | * @return array<number|string,mixed> |
1175 | 1175 | */ |
1176 | - public static function arrayRemoveValues(array $sourceArray, array $values, bool $keepKeys=false) : array |
|
1176 | + public static function arrayRemoveValues(array $sourceArray, array $values, bool $keepKeys = false) : array |
|
1177 | 1177 | { |
1178 | 1178 | return ConvertHelper_Array::removeValues($sourceArray, $values, $keepKeys); |
1179 | 1179 | } |
@@ -87,14 +87,14 @@ |
||
87 | 87 | public function match(string $source, string $target) : float |
88 | 88 | { |
89 | 89 | // avoid doing this via levenshtein |
90 | - if($source === $target) { |
|
90 | + if ($source === $target) { |
|
91 | 91 | return 100; |
92 | 92 | } |
93 | 93 | |
94 | 94 | $maxL = $this->getMaxDistance(); |
95 | 95 | |
96 | 96 | $diff = levenshtein($source, $target); |
97 | - if($diff > $maxL) { |
|
97 | + if ($diff > $maxL) { |
|
98 | 98 | return 0; |
99 | 99 | } |
100 | 100 |
@@ -49,19 +49,19 @@ |
||
49 | 49 | */ |
50 | 50 | protected static function convertScalarForComparison($scalar) : ?string |
51 | 51 | { |
52 | - if($scalar === '' || is_null($scalar)) { |
|
52 | + if ($scalar === '' || is_null($scalar)) { |
|
53 | 53 | return null; |
54 | 54 | } |
55 | 55 | |
56 | - if(is_bool($scalar)) { |
|
56 | + if (is_bool($scalar)) { |
|
57 | 57 | return ConvertHelper_Bool::toStringStrict($scalar); |
58 | 58 | } |
59 | 59 | |
60 | - if(is_array($scalar)) { |
|
60 | + if (is_array($scalar)) { |
|
61 | 61 | $scalar = md5(serialize($scalar)); |
62 | 62 | } |
63 | 63 | |
64 | - if($scalar !== null && !is_scalar($scalar)) { |
|
64 | + if ($scalar !== null && !is_scalar($scalar)) { |
|
65 | 65 | throw new ConvertHelper_Exception( |
66 | 66 | 'Not a scalar value in comparison', |
67 | 67 | null, |
@@ -33,14 +33,14 @@ discard block |
||
33 | 33 | * @param bool $caseInsensitive |
34 | 34 | * @return ConvertHelper_StringMatch[] |
35 | 35 | */ |
36 | - public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array |
|
36 | + public static function findString(string $needle, string $haystack, bool $caseInsensitive = false): array |
|
37 | 37 | { |
38 | - if($needle === '') { |
|
38 | + if ($needle === '') { |
|
39 | 39 | return array(); |
40 | 40 | } |
41 | 41 | |
42 | 42 | $function = 'mb_strpos'; |
43 | - if($caseInsensitive) { |
|
43 | + if ($caseInsensitive) { |
|
44 | 44 | $function = 'mb_stripos'; |
45 | 45 | } |
46 | 46 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $positions = array(); |
49 | 49 | $length = mb_strlen($needle); |
50 | 50 | |
51 | - while( ($pos = $function($haystack, $needle, $pos)) !== false) |
|
51 | + while (($pos = $function($haystack, $needle, $pos)) !== false) |
|
52 | 52 | { |
53 | 53 | $match = mb_substr($haystack, $pos, $length); |
54 | 54 | $positions[] = new ConvertHelper_StringMatch($pos, $match); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | public static function toArray(string $string) : array |
72 | 72 | { |
73 | 73 | $result = preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY); |
74 | - if($result !== false) { |
|
74 | + if ($result !== false) { |
|
75 | 75 | return $result; |
76 | 76 | } |
77 | 77 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | */ |
125 | 125 | public static function toUtf8(string $string) : string |
126 | 126 | { |
127 | - if(!self::isASCII($string)) { |
|
127 | + if (!self::isASCII($string)) { |
|
128 | 128 | return Encoding::toUTF8($string); |
129 | 129 | } |
130 | 130 | |
@@ -142,11 +142,11 @@ discard block |
||
142 | 142 | */ |
143 | 143 | public static function isASCII($string) : bool |
144 | 144 | { |
145 | - if($string === '' || $string === NULL) { |
|
145 | + if ($string === '' || $string === NULL) { |
|
146 | 146 | return true; |
147 | 147 | } |
148 | 148 | |
149 | - if(!is_string($string)) { |
|
149 | + if (!is_string($string)) { |
|
150 | 150 | return false; |
151 | 151 | } |
152 | 152 | |
@@ -161,12 +161,12 @@ discard block |
||
161 | 161 | */ |
162 | 162 | public static function isHTML(string $string) : bool |
163 | 163 | { |
164 | - if(preg_match('%<[a-z/][\s\S]*>%siU', $string)) { |
|
164 | + if (preg_match('%<[a-z/][\s\S]*>%siU', $string)) { |
|
165 | 165 | return true; |
166 | 166 | } |
167 | 167 | |
168 | 168 | $decoded = html_entity_decode($string); |
169 | - if($decoded !== $string) { |
|
169 | + if ($decoded !== $string) { |
|
170 | 170 | return true; |
171 | 171 | } |
172 | 172 | |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @param int $tabSize The amount of spaces per tab. |
199 | 199 | * @return string |
200 | 200 | */ |
201 | - public static function tabs2spaces(string $string, int $tabSize=4) : string |
|
201 | + public static function tabs2spaces(string $string, int $tabSize = 4) : string |
|
202 | 202 | { |
203 | 203 | return str_replace("\t", str_repeat(' ', $tabSize), $string); |
204 | 204 | } |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | * @param int $tabSize The amount of spaces per tab in the source string. |
211 | 211 | * @return string |
212 | 212 | */ |
213 | - public static function spaces2tabs(string $string, int $tabSize=4) : string |
|
213 | + public static function spaces2tabs(string $string, int $tabSize = 4) : string |
|
214 | 214 | { |
215 | 215 | return str_replace(str_repeat(' ', $tabSize), "\t", $string); |
216 | 216 | } |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | return $text; |
290 | 290 | } |
291 | 291 | |
292 | - return trim(mb_substr($text, 0, $targetLength)) . $append; |
|
292 | + return trim(mb_substr($text, 0, $targetLength)).$append; |
|
293 | 293 | } |
294 | 294 | |
295 | 295 | /** |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | */ |
303 | 303 | public static function explodeTrim(string $delimiter, string $string) : array |
304 | 304 | { |
305 | - if(empty($string) || empty($delimiter)) { |
|
305 | + if (empty($string) || empty($delimiter)) { |
|
306 | 306 | return array(); |
307 | 307 | } |
308 | 308 | |
@@ -310,8 +310,8 @@ discard block |
||
310 | 310 | $tokens = array_map('trim', $tokens); |
311 | 311 | |
312 | 312 | $keep = array(); |
313 | - foreach($tokens as $token) { |
|
314 | - if($token !== '') { |
|
313 | + foreach ($tokens as $token) { |
|
314 | + if ($token !== '') { |
|
315 | 315 | $keep[] = $token; |
316 | 316 | } |
317 | 317 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | public function __construct() |
73 | 73 | { |
74 | - if(class_exists('\AppLocalize\Localization')) { |
|
74 | + if (class_exists('\AppLocalize\Localization')) { |
|
75 | 75 | \AppLocalize\Localization::onLocaleChanged(array($this, 'handle_localeChanged')); |
76 | 76 | } |
77 | 77 | } |
@@ -133,11 +133,11 @@ discard block |
||
133 | 133 | |
134 | 134 | $epoch = 'past'; |
135 | 135 | $key = 'singular'; |
136 | - if($this->dateDiff > 1) { |
|
136 | + if ($this->dateDiff > 1) { |
|
137 | 137 | $key = 'plural'; |
138 | 138 | } |
139 | 139 | |
140 | - if($this->future) { |
|
140 | + if ($this->future) { |
|
141 | 141 | $epoch = 'future'; |
142 | 142 | } |
143 | 143 | |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | |
151 | 151 | protected function initTexts() : void |
152 | 152 | { |
153 | - if(isset(self::$texts)) { |
|
153 | + if (isset(self::$texts)) { |
|
154 | 154 | return; |
155 | 155 | } |
156 | 156 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | $day = (int)date("j", $this->dateTo); |
237 | 237 | $year = (int)date("Y", $this->dateFrom); |
238 | 238 | |
239 | - while(mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
239 | + while (mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
240 | 240 | { |
241 | 241 | $months_difference++; |
242 | 242 | } |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | |
257 | 257 | protected function resolveCalculations() : void |
258 | 258 | { |
259 | - if(!isset($this->dateFrom)) |
|
259 | + if (!isset($this->dateFrom)) |
|
260 | 260 | { |
261 | 261 | throw new ConvertHelper_Exception( |
262 | 262 | 'No date from has been specified.', |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | } |
267 | 267 | |
268 | 268 | // no date to set? Assume we want to use today. |
269 | - if(!isset($this->dateTo)) |
|
269 | + if (!isset($this->dateTo)) |
|
270 | 270 | { |
271 | 271 | $this->dateTo = time(); |
272 | 272 | } |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | |
334 | 334 | $difference = $this->dateTo - $this->dateFrom; |
335 | 335 | |
336 | - if($difference < 0) |
|
336 | + if ($difference < 0) |
|
337 | 337 | { |
338 | 338 | $difference = $difference * -1; |
339 | 339 | $this->future = true; |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | { |
396 | 396 | $converter = new ConvertHelper_DurationConverter(); |
397 | 397 | |
398 | - if($datefrom instanceof DateTime) |
|
398 | + if ($datefrom instanceof DateTime) |
|
399 | 399 | { |
400 | 400 | $converter->setDateFrom($datefrom); |
401 | 401 | } |
@@ -404,11 +404,11 @@ discard block |
||
404 | 404 | $converter->setDateFrom(ConvertHelper_Date::fromTimestamp($datefrom)); |
405 | 405 | } |
406 | 406 | |
407 | - if($dateto instanceof DateTime) |
|
407 | + if ($dateto instanceof DateTime) |
|
408 | 408 | { |
409 | 409 | $converter->setDateTo($dateto); |
410 | 410 | } |
411 | - else if($dateto > 0) |
|
411 | + else if ($dateto > 0) |
|
412 | 412 | { |
413 | 413 | $converter->setDateTo(ConvertHelper_Date::fromTimestamp($dateto)); |
414 | 414 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | { |
60 | 60 | $this->info = $info; |
61 | 61 | |
62 | - if(isset($data['serialized'])) |
|
62 | + if (isset($data['serialized'])) |
|
63 | 63 | { |
64 | 64 | $this->parseSerialized($data['serialized']); |
65 | 65 | } |
@@ -69,11 +69,11 @@ discard block |
||
69 | 69 | $this->position = $data['position']; |
70 | 70 | } |
71 | 71 | |
72 | - if($this->hasClass()) |
|
72 | + if ($this->hasClass()) |
|
73 | 73 | { |
74 | 74 | $this->type = self::TYPE_METHOD_CALL; |
75 | 75 | } |
76 | - else if($this->hasFunction()) |
|
76 | + else if ($this->hasFunction()) |
|
77 | 77 | { |
78 | 78 | $this->type = self::TYPE_FUNCTION_CALL; |
79 | 79 | } |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | public function getFileName() : string |
134 | 134 | { |
135 | - if($this->hasFile()) { |
|
135 | + if ($this->hasFile()) { |
|
136 | 136 | return basename($this->file); |
137 | 137 | } |
138 | 138 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | |
142 | 142 | public function getFileRelative() : string |
143 | 143 | { |
144 | - if($this->hasFile()) { |
|
144 | + if ($this->hasFile()) { |
|
145 | 145 | return FileHelper::relativizePathByDepth($this->file, $this->info->getFolderDepth()); |
146 | 146 | } |
147 | 147 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | $this->class = $data['class']; |
172 | 172 | $this->position = $data['position']; |
173 | 173 | |
174 | - foreach($data['arguments'] as $arg) |
|
174 | + foreach ($data['arguments'] as $arg) |
|
175 | 175 | { |
176 | 176 | $this->args[] = VariableInfo::fromSerialized($arg); |
177 | 177 | } |
@@ -182,29 +182,29 @@ discard block |
||
182 | 182 | */ |
183 | 183 | protected function parseTrace(array $trace) : void |
184 | 184 | { |
185 | - if(isset($trace['line'])) |
|
185 | + if (isset($trace['line'])) |
|
186 | 186 | { |
187 | 187 | $this->line = intval($trace['line']); |
188 | 188 | } |
189 | 189 | |
190 | - if(isset($trace['function'])) |
|
190 | + if (isset($trace['function'])) |
|
191 | 191 | { |
192 | 192 | $this->function = $trace['function']; |
193 | 193 | } |
194 | 194 | |
195 | - if(isset($trace['file'])) |
|
195 | + if (isset($trace['file'])) |
|
196 | 196 | { |
197 | 197 | $this->file = FileHelper::normalizePath($trace['file']); |
198 | 198 | } |
199 | 199 | |
200 | - if(isset($trace['class'])) |
|
200 | + if (isset($trace['class'])) |
|
201 | 201 | { |
202 | 202 | $this->class = $trace['class']; |
203 | 203 | } |
204 | 204 | |
205 | - if(isset($trace['args']) && !empty($trace['args'])) |
|
205 | + if (isset($trace['args']) && !empty($trace['args'])) |
|
206 | 206 | { |
207 | - foreach($trace['args'] as $arg) |
|
207 | + foreach ($trace['args'] as $arg) |
|
208 | 208 | { |
209 | 209 | $this->args[] = parseVariable($arg); |
210 | 210 | } |
@@ -219,13 +219,13 @@ discard block |
||
219 | 219 | |
220 | 220 | $tokens[] = '#'.sprintf('%0'.$padLength.'d', $this->getPosition()).' '; |
221 | 221 | |
222 | - if($this->hasFile()) { |
|
222 | + if ($this->hasFile()) { |
|
223 | 223 | $tokens[] = $this->getFileRelative().':'.$this->getLine(); |
224 | 224 | } |
225 | 225 | |
226 | - if($this->hasClass()) { |
|
226 | + if ($this->hasClass()) { |
|
227 | 227 | $tokens[] = $this->getClass().'::'.$this->getFunction().'('.$this->argumentsToString().')'; |
228 | - } else if($this->hasFunction()) { |
|
228 | + } else if ($this->hasFunction()) { |
|
229 | 229 | $tokens[] = $this->getFunction().'('.$this->argumentsToString().')'; |
230 | 230 | } |
231 | 231 | |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | { |
237 | 237 | $tokens = array(); |
238 | 238 | |
239 | - foreach($this->args as $arg) |
|
239 | + foreach ($this->args as $arg) |
|
240 | 240 | { |
241 | 241 | $tokens[] = $arg->toString(); |
242 | 242 | } |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | 'arguments' => array() |
282 | 282 | ); |
283 | 283 | |
284 | - foreach($this->args as $argument) |
|
284 | + foreach ($this->args as $argument) |
|
285 | 285 | { |
286 | 286 | $result['arguments'][] = $argument->serialize(); |
287 | 287 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | |
92 | 92 | $contents = file_get_contents($file); |
93 | 93 | |
94 | - if($contents === false) |
|
94 | + if ($contents === false) |
|
95 | 95 | { |
96 | 96 | throw new FileHelper_Exception( |
97 | 97 | 'Cannot load serialized content from file.', |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | |
106 | 106 | $result = @unserialize($contents); |
107 | 107 | |
108 | - if($result !== false) { |
|
108 | + if ($result !== false) { |
|
109 | 109 | return $result; |
110 | 110 | } |
111 | 111 | |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | */ |
129 | 129 | public static function deleteTree(string $rootFolder) : bool |
130 | 130 | { |
131 | - if(!file_exists($rootFolder)) { |
|
131 | + if (!file_exists($rootFolder)) { |
|
132 | 132 | return true; |
133 | 133 | } |
134 | 134 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | */ |
170 | 170 | public static function createFolder(string $path) : void |
171 | 171 | { |
172 | - if(is_dir($path) || mkdir($path, 0777, true)) { |
|
172 | + if (is_dir($path) || mkdir($path, 0777, true)) { |
|
173 | 173 | return; |
174 | 174 | } |
175 | 175 | |
@@ -204,11 +204,11 @@ discard block |
||
204 | 204 | |
205 | 205 | if ($item->isDir()) |
206 | 206 | { |
207 | - FileHelper::copyTree($itemPath, $target . '/' . $baseName); |
|
207 | + FileHelper::copyTree($itemPath, $target.'/'.$baseName); |
|
208 | 208 | } |
209 | - else if($item->isFile()) |
|
209 | + else if ($item->isFile()) |
|
210 | 210 | { |
211 | - self::copyFile($itemPath, $target . '/' . $baseName); |
|
211 | + self::copyFile($itemPath, $target.'/'.$baseName); |
|
212 | 212 | } |
213 | 213 | } |
214 | 214 | } |
@@ -236,11 +236,11 @@ discard block |
||
236 | 236 | |
237 | 237 | $targetFolder = dirname($targetPath); |
238 | 238 | |
239 | - if(!file_exists($targetFolder)) |
|
239 | + if (!file_exists($targetFolder)) |
|
240 | 240 | { |
241 | 241 | self::createFolder($targetFolder); |
242 | 242 | } |
243 | - else if(!is_writable($targetFolder)) |
|
243 | + else if (!is_writable($targetFolder)) |
|
244 | 244 | { |
245 | 245 | throw new FileHelper_Exception( |
246 | 246 | sprintf('Target folder [%s] is not writable.', basename($targetFolder)), |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | ); |
253 | 253 | } |
254 | 254 | |
255 | - if(copy($sourcePath, $targetPath)) { |
|
255 | + if (copy($sourcePath, $targetPath)) { |
|
256 | 256 | return; |
257 | 257 | } |
258 | 258 | |
@@ -279,11 +279,11 @@ discard block |
||
279 | 279 | */ |
280 | 280 | public static function deleteFile(string $filePath) : void |
281 | 281 | { |
282 | - if(!file_exists($filePath)) { |
|
282 | + if (!file_exists($filePath)) { |
|
283 | 283 | return; |
284 | 284 | } |
285 | 285 | |
286 | - if(unlink($filePath)) { |
|
286 | + if (unlink($filePath)) { |
|
287 | 287 | return; |
288 | 288 | } |
289 | 289 | |
@@ -307,10 +307,10 @@ discard block |
||
307 | 307 | * @return Csv |
308 | 308 | * @see CSVHelper::createParser() |
309 | 309 | */ |
310 | - public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : Csv |
|
310 | + public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : Csv |
|
311 | 311 | { |
312 | - if($delimiter==='') { $delimiter = ';'; } |
|
313 | - if($enclosure==='') { $enclosure = '"'; } |
|
312 | + if ($delimiter === '') { $delimiter = ';'; } |
|
313 | + if ($enclosure === '') { $enclosure = '"'; } |
|
314 | 314 | |
315 | 315 | $parser = CSVHelper::createParser($delimiter); |
316 | 316 | $parser->enclosure = $enclosure; |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | * @see parseCSVFile() |
335 | 335 | * @see FileHelper::ERROR_PARSING_CSV |
336 | 336 | */ |
337 | - public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array |
|
337 | + public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : array |
|
338 | 338 | { |
339 | 339 | $parser = self::createCSVParser($delimiter, $enclosure, '\\', $heading); |
340 | 340 | |
341 | - if($parser->parse($csv)) |
|
341 | + if ($parser->parse($csv)) |
|
342 | 342 | { |
343 | 343 | return $parser->data; |
344 | 344 | } |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
367 | 367 | * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS |
368 | 368 | */ |
369 | - public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array |
|
369 | + public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : array |
|
370 | 370 | { |
371 | 371 | $content = self::readContents($filePath); |
372 | 372 | |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | public static function detectMimeType(string $fileName) : ?string |
384 | 384 | { |
385 | 385 | $ext = self::getExtension($fileName); |
386 | - if(empty($ext)) { |
|
386 | + if (empty($ext)) { |
|
387 | 387 | return null; |
388 | 388 | } |
389 | 389 | |
@@ -423,11 +423,11 @@ discard block |
||
423 | 423 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
424 | 424 | * @see FileHelper::ERROR_UNKNOWN_FILE_MIME_TYPE |
425 | 425 | */ |
426 | - public static function sendFile(string $filePath, ?string $fileName = null, bool $asAttachment=true) : void |
|
426 | + public static function sendFile(string $filePath, ?string $fileName = null, bool $asAttachment = true) : void |
|
427 | 427 | { |
428 | 428 | self::requireFileExists($filePath); |
429 | 429 | |
430 | - if(empty($fileName)) { |
|
430 | + if (empty($fileName)) { |
|
431 | 431 | $fileName = basename($filePath); |
432 | 432 | } |
433 | 433 | |
@@ -445,10 +445,10 @@ discard block |
||
445 | 445 | |
446 | 446 | header("Cache-Control: public", true); |
447 | 447 | header("Content-Description: File Transfer", true); |
448 | - header("Content-Type: " . $mime, true); |
|
448 | + header("Content-Type: ".$mime, true); |
|
449 | 449 | |
450 | 450 | $disposition = 'inline'; |
451 | - if($asAttachment) { |
|
451 | + if ($asAttachment) { |
|
452 | 452 | $disposition = 'attachment'; |
453 | 453 | } |
454 | 454 | |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | public static function downloadFile(string $url) : string |
475 | 475 | { |
476 | 476 | $ch = curl_init(); |
477 | - if(!is_resource($ch)) |
|
477 | + if (!is_resource($ch)) |
|
478 | 478 | { |
479 | 479 | throw new FileHelper_Exception( |
480 | 480 | 'Could not initialize a new cURL instance.', |
@@ -495,7 +495,7 @@ discard block |
||
495 | 495 | |
496 | 496 | $output = curl_exec($ch); |
497 | 497 | |
498 | - if($output === false) { |
|
498 | + if ($output === false) { |
|
499 | 499 | throw new FileHelper_Exception( |
500 | 500 | 'Unable to open URL', |
501 | 501 | sprintf( |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | |
510 | 510 | curl_close($ch); |
511 | 511 | |
512 | - if(is_string($output)) |
|
512 | + if (is_string($output)) |
|
513 | 513 | { |
514 | 514 | return $output; |
515 | 515 | } |
@@ -544,14 +544,14 @@ discard block |
||
544 | 544 | */ |
545 | 545 | public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string |
546 | 546 | { |
547 | - if($pathOrDirIterator instanceof DirectoryIterator) { |
|
547 | + if ($pathOrDirIterator instanceof DirectoryIterator) { |
|
548 | 548 | $filename = $pathOrDirIterator->getFilename(); |
549 | 549 | } else { |
550 | 550 | $filename = basename(strval($pathOrDirIterator)); |
551 | 551 | } |
552 | 552 | |
553 | 553 | $ext = pathinfo($filename, PATHINFO_EXTENSION); |
554 | - if($lowercase) { |
|
554 | + if ($lowercase) { |
|
555 | 555 | $ext = mb_strtolower($ext); |
556 | 556 | } |
557 | 557 | |
@@ -573,13 +573,13 @@ discard block |
||
573 | 573 | public static function getFilename($pathOrDirIterator, $extension = true) : string |
574 | 574 | { |
575 | 575 | $path = strval($pathOrDirIterator); |
576 | - if($pathOrDirIterator instanceof DirectoryIterator) { |
|
576 | + if ($pathOrDirIterator instanceof DirectoryIterator) { |
|
577 | 577 | $path = $pathOrDirIterator->getFilename(); |
578 | 578 | } |
579 | 579 | |
580 | 580 | $path = self::normalizePath($path); |
581 | 581 | |
582 | - if(!$extension) { |
|
582 | + if (!$extension) { |
|
583 | 583 | return pathinfo($path, PATHINFO_FILENAME); |
584 | 584 | } |
585 | 585 | |
@@ -599,18 +599,18 @@ discard block |
||
599 | 599 | * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE |
600 | 600 | * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE |
601 | 601 | */ |
602 | - public static function parseJSONFile(string $file, string $targetEncoding='', $sourceEncoding=null) : array |
|
602 | + public static function parseJSONFile(string $file, string $targetEncoding = '', $sourceEncoding = null) : array |
|
603 | 603 | { |
604 | 604 | self::requireFileExists($file, self::ERROR_CANNOT_FIND_JSON_FILE); |
605 | 605 | |
606 | 606 | $content = self::readContents($file); |
607 | 607 | |
608 | - if(!empty($targetEncoding)) { |
|
608 | + if (!empty($targetEncoding)) { |
|
609 | 609 | $content = mb_convert_encoding($content, $targetEncoding, $sourceEncoding); |
610 | 610 | } |
611 | 611 | |
612 | 612 | $json = json_decode($content, true); |
613 | - if($json === false || $json === NULL) { |
|
613 | + if ($json === false || $json === NULL) { |
|
614 | 614 | throw new FileHelper_Exception( |
615 | 615 | 'Cannot decode json data', |
616 | 616 | sprintf( |
@@ -650,13 +650,13 @@ discard block |
||
650 | 650 | |
651 | 651 | $name = str_replace(array_keys($replaces), array_values($replaces), $name); |
652 | 652 | |
653 | - while(strstr($name, ' ')) { |
|
653 | + while (strstr($name, ' ')) { |
|
654 | 654 | $name = str_replace(' ', ' ', $name); |
655 | 655 | } |
656 | 656 | |
657 | 657 | $name = str_replace(array_keys($replaces), array_values($replaces), $name); |
658 | 658 | |
659 | - while(strstr($name, '..')) { |
|
659 | + while (strstr($name, '..')) { |
|
660 | 660 | $name = str_replace('..', '.', $name); |
661 | 661 | } |
662 | 662 | |
@@ -692,7 +692,7 @@ discard block |
||
692 | 692 | * @throws FileHelper_Exception |
693 | 693 | * @see FileHelper::createFileFinder() |
694 | 694 | */ |
695 | - public static function findHTMLFiles(string $targetFolder, array $options=array()) : array |
|
695 | + public static function findHTMLFiles(string $targetFolder, array $options = array()) : array |
|
696 | 696 | { |
697 | 697 | return self::findFiles($targetFolder, array('html'), $options); |
698 | 698 | } |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | * @throws FileHelper_Exception |
711 | 711 | * @see FileHelper::createFileFinder() |
712 | 712 | */ |
713 | - public static function findPHPFiles(string $targetFolder, array $options=array()) : array |
|
713 | + public static function findPHPFiles(string $targetFolder, array $options = array()) : array |
|
714 | 714 | { |
715 | 715 | return self::findFiles($targetFolder, array('php'), $options); |
716 | 716 | } |
@@ -729,7 +729,7 @@ discard block |
||
729 | 729 | * @return string[] |
730 | 730 | * @see FileHelper::createFileFinder() |
731 | 731 | */ |
732 | - public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array()) : array |
|
732 | + public static function findFiles(string $targetFolder, array $extensions = array(), array $options = array()) : array |
|
733 | 733 | { |
734 | 734 | $finder = self::createFileFinder($targetFolder); |
735 | 735 | |
@@ -739,16 +739,16 @@ discard block |
||
739 | 739 | |
740 | 740 | $finder->setPathmodeStrip(); |
741 | 741 | |
742 | - if(isset($options['relative-path']) && $options['relative-path'] === true) |
|
742 | + if (isset($options['relative-path']) && $options['relative-path'] === true) |
|
743 | 743 | { |
744 | 744 | $finder->setPathmodeRelative(); |
745 | 745 | } |
746 | - else if(isset($options['absolute-path']) && $options['absolute-path'] === true) |
|
746 | + else if (isset($options['absolute-path']) && $options['absolute-path'] === true) |
|
747 | 747 | { |
748 | 748 | $finder->setPathmodeAbsolute(); |
749 | 749 | } |
750 | 750 | |
751 | - if(isset($options['strip-extension'])) |
|
751 | + if (isset($options['strip-extension'])) |
|
752 | 752 | { |
753 | 753 | $finder->stripExtensions(); |
754 | 754 | } |
@@ -766,12 +766,12 @@ discard block |
||
766 | 766 | * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to. |
767 | 767 | * @return string |
768 | 768 | */ |
769 | - public static function removeExtension(string $filename, bool $keepPath=false) : string |
|
769 | + public static function removeExtension(string $filename, bool $keepPath = false) : string |
|
770 | 770 | { |
771 | 771 | // normalize paths to allow windows style slashes even on nix servers |
772 | 772 | $filename = self::normalizePath($filename); |
773 | 773 | |
774 | - if(!$keepPath) |
|
774 | + if (!$keepPath) |
|
775 | 775 | { |
776 | 776 | return pathinfo($filename, PATHINFO_FILENAME); |
777 | 777 | } |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | public static function detectUTFBom(string $filename) : ?string |
808 | 808 | { |
809 | 809 | $fp = fopen($filename, 'r'); |
810 | - if($fp === false) |
|
810 | + if ($fp === false) |
|
811 | 811 | { |
812 | 812 | throw new FileHelper_Exception( |
813 | 813 | 'Cannot open file for reading', |
@@ -822,10 +822,10 @@ discard block |
||
822 | 822 | |
823 | 823 | $boms = self::getUTFBOMs(); |
824 | 824 | |
825 | - foreach($boms as $bom => $value) |
|
825 | + foreach ($boms as $bom => $value) |
|
826 | 826 | { |
827 | 827 | $length = mb_strlen($value); |
828 | - if(mb_substr($text, 0, $length) == $value) { |
|
828 | + if (mb_substr($text, 0, $length) == $value) { |
|
829 | 829 | return $bom; |
830 | 830 | } |
831 | 831 | } |
@@ -842,13 +842,13 @@ discard block |
||
842 | 842 | */ |
843 | 843 | public static function getUTFBOMs() : array |
844 | 844 | { |
845 | - if(!isset(self::$utfBoms)) { |
|
845 | + if (!isset(self::$utfBoms)) { |
|
846 | 846 | self::$utfBoms = array( |
847 | - 'UTF32-BE' => chr(0x00) . chr(0x00) . chr(0xFE) . chr(0xFF), |
|
848 | - 'UTF32-LE' => chr(0xFF) . chr(0xFE) . chr(0x00) . chr(0x00), |
|
849 | - 'UTF16-BE' => chr(0xFE) . chr(0xFF), |
|
850 | - 'UTF16-LE' => chr(0xFF) . chr(0xFE), |
|
851 | - 'UTF8' => chr(0xEF) . chr(0xBB) . chr(0xBF) |
|
847 | + 'UTF32-BE' => chr(0x00).chr(0x00).chr(0xFE).chr(0xFF), |
|
848 | + 'UTF32-LE' => chr(0xFF).chr(0xFE).chr(0x00).chr(0x00), |
|
849 | + 'UTF16-BE' => chr(0xFE).chr(0xFF), |
|
850 | + 'UTF16-LE' => chr(0xFF).chr(0xFE), |
|
851 | + 'UTF8' => chr(0xEF).chr(0xBB).chr(0xBF) |
|
852 | 852 | ); |
853 | 853 | } |
854 | 854 | |
@@ -869,7 +869,7 @@ discard block |
||
869 | 869 | $encodings = self::getKnownUnicodeEncodings(); |
870 | 870 | |
871 | 871 | $keep = array(); |
872 | - foreach($encodings as $string) |
|
872 | + foreach ($encodings as $string) |
|
873 | 873 | { |
874 | 874 | $withHyphen = str_replace('UTF', 'UTF-', $string); |
875 | 875 | |
@@ -916,16 +916,16 @@ discard block |
||
916 | 916 | * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
917 | 917 | * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
918 | 918 | */ |
919 | - public static function saveAsJSON($data, string $file, bool $pretty=false) : void |
|
919 | + public static function saveAsJSON($data, string $file, bool $pretty = false) : void |
|
920 | 920 | { |
921 | 921 | $options = null; |
922 | - if($pretty) { |
|
922 | + if ($pretty) { |
|
923 | 923 | $options = JSON_PRETTY_PRINT; |
924 | 924 | } |
925 | 925 | |
926 | 926 | $json = json_encode($data, $options); |
927 | 927 | |
928 | - if($json===false) |
|
928 | + if ($json === false) |
|
929 | 929 | { |
930 | 930 | $errorCode = json_last_error(); |
931 | 931 | |
@@ -951,14 +951,14 @@ discard block |
||
951 | 951 | * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
952 | 952 | * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
953 | 953 | */ |
954 | - public static function saveFile(string $filePath, string $content='') : void |
|
954 | + public static function saveFile(string $filePath, string $content = '') : void |
|
955 | 955 | { |
956 | 956 | $filePath = self::normalizePath($filePath); |
957 | 957 | |
958 | 958 | // target file already exists |
959 | - if(file_exists($filePath)) |
|
959 | + if (file_exists($filePath)) |
|
960 | 960 | { |
961 | - if(!is_writable($filePath)) |
|
961 | + if (!is_writable($filePath)) |
|
962 | 962 | { |
963 | 963 | throw new FileHelper_Exception( |
964 | 964 | sprintf('Cannot save file: target file [%s] exists, but is not writable.', basename($filePath)), |
@@ -978,7 +978,7 @@ discard block |
||
978 | 978 | // create the folder as needed |
979 | 979 | self::createFolder($targetFolder); |
980 | 980 | |
981 | - if(!is_writable($targetFolder)) |
|
981 | + if (!is_writable($targetFolder)) |
|
982 | 982 | { |
983 | 983 | throw new FileHelper_Exception( |
984 | 984 | sprintf('Cannot save file: target folder [%s] is not writable.', basename($targetFolder)), |
@@ -991,7 +991,7 @@ discard block |
||
991 | 991 | } |
992 | 992 | } |
993 | 993 | |
994 | - if(is_dir($filePath)) |
|
994 | + if (is_dir($filePath)) |
|
995 | 995 | { |
996 | 996 | throw new FileHelper_Exception( |
997 | 997 | sprintf('Cannot save file: the target [%s] is a directory.', basename($filePath)), |
@@ -1003,7 +1003,7 @@ discard block |
||
1003 | 1003 | ); |
1004 | 1004 | } |
1005 | 1005 | |
1006 | - if(file_put_contents($filePath, $content) !== false) { |
|
1006 | + if (file_put_contents($filePath, $content) !== false) { |
|
1007 | 1007 | return; |
1008 | 1008 | } |
1009 | 1009 | |
@@ -1042,7 +1042,7 @@ discard block |
||
1042 | 1042 | { |
1043 | 1043 | static $checked = array(); |
1044 | 1044 | |
1045 | - if(isset($checked[$command])) { |
|
1045 | + if (isset($checked[$command])) { |
|
1046 | 1046 | return $checked[$command]; |
1047 | 1047 | } |
1048 | 1048 | |
@@ -1055,7 +1055,7 @@ discard block |
||
1055 | 1055 | |
1056 | 1056 | $os = strtolower(PHP_OS_FAMILY); |
1057 | 1057 | |
1058 | - if(!isset($osCommands[$os])) |
|
1058 | + if (!isset($osCommands[$os])) |
|
1059 | 1059 | { |
1060 | 1060 | throw new FileHelper_Exception( |
1061 | 1061 | 'Unsupported OS for CLI commands', |
@@ -1081,7 +1081,7 @@ discard block |
||
1081 | 1081 | $pipes |
1082 | 1082 | ); |
1083 | 1083 | |
1084 | - if($process === false) { |
|
1084 | + if ($process === false) { |
|
1085 | 1085 | $checked[$command] = false; |
1086 | 1086 | return false; |
1087 | 1087 | } |
@@ -1113,7 +1113,7 @@ discard block |
||
1113 | 1113 | */ |
1114 | 1114 | public static function checkPHPFileSyntax(string $path) |
1115 | 1115 | { |
1116 | - if(!self::canMakePHPCalls()) { |
|
1116 | + if (!self::canMakePHPCalls()) { |
|
1117 | 1117 | return true; |
1118 | 1118 | } |
1119 | 1119 | |
@@ -1124,7 +1124,7 @@ discard block |
||
1124 | 1124 | // when the validation is successful, the first entry |
1125 | 1125 | // in the array contains the success message. When it |
1126 | 1126 | // is invalid, the first entry is always empty. |
1127 | - if(!empty($output[0])) { |
|
1127 | + if (!empty($output[0])) { |
|
1128 | 1128 | return true; |
1129 | 1129 | } |
1130 | 1130 | |
@@ -1145,7 +1145,7 @@ discard block |
||
1145 | 1145 | public static function getModifiedDate(string $path) : ?DateTime |
1146 | 1146 | { |
1147 | 1147 | $time = filemtime($path); |
1148 | - if($time === false) { |
|
1148 | + if ($time === false) { |
|
1149 | 1149 | return null; |
1150 | 1150 | } |
1151 | 1151 | |
@@ -1175,11 +1175,11 @@ discard block |
||
1175 | 1175 | */ |
1176 | 1176 | public static function getSubfolders($targetFolder, array $options = array()) |
1177 | 1177 | { |
1178 | - if($targetFolder instanceof DirectoryIterator) { |
|
1178 | + if ($targetFolder instanceof DirectoryIterator) { |
|
1179 | 1179 | $targetFolder = $targetFolder->getPathname(); |
1180 | 1180 | } |
1181 | 1181 | |
1182 | - if(!is_dir($targetFolder)) |
|
1182 | + if (!is_dir($targetFolder)) |
|
1183 | 1183 | { |
1184 | 1184 | throw new FileHelper_Exception( |
1185 | 1185 | 'Target folder does not exist', |
@@ -1203,29 +1203,29 @@ discard block |
||
1203 | 1203 | |
1204 | 1204 | $d = new DirectoryIterator($targetFolder); |
1205 | 1205 | |
1206 | - foreach($d as $item) |
|
1206 | + foreach ($d as $item) |
|
1207 | 1207 | { |
1208 | - if($item->isDir() && !$item->isDot()) |
|
1208 | + if ($item->isDir() && !$item->isDot()) |
|
1209 | 1209 | { |
1210 | 1210 | $name = $item->getFilename(); |
1211 | 1211 | |
1212 | - if(!$options['absolute-path']) { |
|
1212 | + if (!$options['absolute-path']) { |
|
1213 | 1213 | $result[] = $name; |
1214 | 1214 | } else { |
1215 | 1215 | $result[] = $targetFolder.'/'.$name; |
1216 | 1216 | } |
1217 | 1217 | |
1218 | - if(!$options['recursive']) |
|
1218 | + if (!$options['recursive']) |
|
1219 | 1219 | { |
1220 | 1220 | continue; |
1221 | 1221 | } |
1222 | 1222 | |
1223 | 1223 | $subs = self::getSubfolders($targetFolder.'/'.$name, $options); |
1224 | - foreach($subs as $sub) |
|
1224 | + foreach ($subs as $sub) |
|
1225 | 1225 | { |
1226 | 1226 | $relative = $name.'/'.$sub; |
1227 | 1227 | |
1228 | - if(!$options['absolute-path']) { |
|
1228 | + if (!$options['absolute-path']) { |
|
1229 | 1229 | $result[] = $relative; |
1230 | 1230 | } else { |
1231 | 1231 | $result[] = $targetFolder.'/'.$relative; |
@@ -1275,7 +1275,7 @@ discard block |
||
1275 | 1275 | $unit = preg_replace('/[^bkmgtpezy]/i', '', $size); // Remove the non-unit characters from the size. |
1276 | 1276 | $size = floatval(preg_replace('/[^0-9\.]/', '', $size)); // Remove the non-numeric characters from the size. |
1277 | 1277 | |
1278 | - if($unit) |
|
1278 | + if ($unit) |
|
1279 | 1279 | { |
1280 | 1280 | // Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by. |
1281 | 1281 | return round($size * pow(1024, stripos('bkmgtpezy', $unit[0]))); |
@@ -1294,7 +1294,7 @@ discard block |
||
1294 | 1294 | * @param int $depth The folder depth to reduce the path to |
1295 | 1295 | * @return string |
1296 | 1296 | */ |
1297 | - public static function relativizePathByDepth(string $path, int $depth=2) : string |
|
1297 | + public static function relativizePathByDepth(string $path, int $depth = 2) : string |
|
1298 | 1298 | { |
1299 | 1299 | $path = self::normalizePath($path); |
1300 | 1300 | |
@@ -1302,17 +1302,17 @@ discard block |
||
1302 | 1302 | $tokens = array_filter($tokens); // remove empty entries (trailing slash for example) |
1303 | 1303 | $tokens = array_values($tokens); // re-index keys |
1304 | 1304 | |
1305 | - if(empty($tokens)) { |
|
1305 | + if (empty($tokens)) { |
|
1306 | 1306 | return ''; |
1307 | 1307 | } |
1308 | 1308 | |
1309 | 1309 | // remove the drive if present |
1310 | - if(strstr($tokens[0], ':')) { |
|
1310 | + if (strstr($tokens[0], ':')) { |
|
1311 | 1311 | array_shift($tokens); |
1312 | 1312 | } |
1313 | 1313 | |
1314 | 1314 | // path was only the drive |
1315 | - if(count($tokens) == 0) { |
|
1315 | + if (count($tokens) == 0) { |
|
1316 | 1316 | return ''; |
1317 | 1317 | } |
1318 | 1318 | |
@@ -1321,8 +1321,8 @@ discard block |
||
1321 | 1321 | |
1322 | 1322 | // reduce the path to the specified depth |
1323 | 1323 | $length = count($tokens); |
1324 | - if($length > $depth) { |
|
1325 | - $tokens = array_slice($tokens, $length-$depth); |
|
1324 | + if ($length > $depth) { |
|
1325 | + $tokens = array_slice($tokens, $length - $depth); |
|
1326 | 1326 | } |
1327 | 1327 | |
1328 | 1328 | // append the last element again |
@@ -1370,14 +1370,14 @@ discard block |
||
1370 | 1370 | * |
1371 | 1371 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
1372 | 1372 | */ |
1373 | - public static function requireFileExists(string $path, ?int $errorCode=null) : string |
|
1373 | + public static function requireFileExists(string $path, ?int $errorCode = null) : string |
|
1374 | 1374 | { |
1375 | 1375 | $result = realpath($path); |
1376 | - if($result !== false) { |
|
1376 | + if ($result !== false) { |
|
1377 | 1377 | return $result; |
1378 | 1378 | } |
1379 | 1379 | |
1380 | - if($errorCode === null) { |
|
1380 | + if ($errorCode === null) { |
|
1381 | 1381 | $errorCode = self::ERROR_FILE_DOES_NOT_EXIST; |
1382 | 1382 | } |
1383 | 1383 | |
@@ -1394,15 +1394,15 @@ discard block |
||
1394 | 1394 | * @return string |
1395 | 1395 | * @throws FileHelper_Exception |
1396 | 1396 | */ |
1397 | - public static function requireFileReadable(string $path, ?int $errorCode=null) : string |
|
1397 | + public static function requireFileReadable(string $path, ?int $errorCode = null) : string |
|
1398 | 1398 | { |
1399 | 1399 | $path = self::requireFileExists($path, $errorCode); |
1400 | 1400 | |
1401 | - if(is_readable($path)) { |
|
1401 | + if (is_readable($path)) { |
|
1402 | 1402 | return $path; |
1403 | 1403 | } |
1404 | 1404 | |
1405 | - if($errorCode === null) { |
|
1405 | + if ($errorCode === null) { |
|
1406 | 1406 | $errorCode = self::ERROR_FILE_NOT_READABLE; |
1407 | 1407 | } |
1408 | 1408 | |
@@ -1431,15 +1431,15 @@ discard block |
||
1431 | 1431 | |
1432 | 1432 | $file = new \SplFileObject($path); |
1433 | 1433 | |
1434 | - if($file->eof()) { |
|
1434 | + if ($file->eof()) { |
|
1435 | 1435 | return ''; |
1436 | 1436 | } |
1437 | 1437 | |
1438 | - $targetLine = $lineNumber-1; |
|
1438 | + $targetLine = $lineNumber - 1; |
|
1439 | 1439 | |
1440 | 1440 | $file->seek($targetLine); |
1441 | 1441 | |
1442 | - if($file->key() !== $targetLine) { |
|
1442 | + if ($file->key() !== $targetLine) { |
|
1443 | 1443 | return null; |
1444 | 1444 | } |
1445 | 1445 | |
@@ -1465,7 +1465,7 @@ discard block |
||
1465 | 1465 | $number = $spl->key(); |
1466 | 1466 | |
1467 | 1467 | // if seeking to the end the cursor is still at 0, there are no lines. |
1468 | - if($number === 0) |
|
1468 | + if ($number === 0) |
|
1469 | 1469 | { |
1470 | 1470 | // since it's a very small file, to get reliable results, |
1471 | 1471 | // we read its contents and use that to determine what |
@@ -1473,13 +1473,13 @@ discard block |
||
1473 | 1473 | // that this is not pactical to solve with the SplFileObject. |
1474 | 1474 | $content = file_get_contents($path); |
1475 | 1475 | |
1476 | - if(empty($content)) { |
|
1476 | + if (empty($content)) { |
|
1477 | 1477 | return 0; |
1478 | 1478 | } |
1479 | 1479 | } |
1480 | 1480 | |
1481 | 1481 | // return the line number we were able to reach + 1 (key is zero-based) |
1482 | - return $number+1; |
|
1482 | + return $number + 1; |
|
1483 | 1483 | } |
1484 | 1484 | |
1485 | 1485 | /** |
@@ -1527,13 +1527,13 @@ discard block |
||
1527 | 1527 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
1528 | 1528 | * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES |
1529 | 1529 | */ |
1530 | - public static function readLines(string $filePath, int $amount=0) : array |
|
1530 | + public static function readLines(string $filePath, int $amount = 0) : array |
|
1531 | 1531 | { |
1532 | 1532 | self::requireFileExists($filePath); |
1533 | 1533 | |
1534 | 1534 | $fn = fopen($filePath, "r"); |
1535 | 1535 | |
1536 | - if($fn === false) |
|
1536 | + if ($fn === false) |
|
1537 | 1537 | { |
1538 | 1538 | throw new FileHelper_Exception( |
1539 | 1539 | 'Could not open file for reading.', |
@@ -1549,19 +1549,19 @@ discard block |
||
1549 | 1549 | $counter = 0; |
1550 | 1550 | $first = true; |
1551 | 1551 | |
1552 | - while(!feof($fn)) |
|
1552 | + while (!feof($fn)) |
|
1553 | 1553 | { |
1554 | 1554 | $counter++; |
1555 | 1555 | |
1556 | 1556 | $line = fgets($fn); |
1557 | 1557 | |
1558 | 1558 | // can happen with zero length files |
1559 | - if($line === false) { |
|
1559 | + if ($line === false) { |
|
1560 | 1560 | continue; |
1561 | 1561 | } |
1562 | 1562 | |
1563 | 1563 | // the first line may contain a unicode BOM marker. |
1564 | - if($first) |
|
1564 | + if ($first) |
|
1565 | 1565 | { |
1566 | 1566 | $line = ConvertHelper::stripUTFBom($line); |
1567 | 1567 | $first = false; |
@@ -1569,7 +1569,7 @@ discard block |
||
1569 | 1569 | |
1570 | 1570 | $result[] = $line; |
1571 | 1571 | |
1572 | - if($amount > 0 && $counter == $amount) { |
|
1572 | + if ($amount > 0 && $counter == $amount) { |
|
1573 | 1573 | break; |
1574 | 1574 | } |
1575 | 1575 | } |
@@ -1595,7 +1595,7 @@ discard block |
||
1595 | 1595 | |
1596 | 1596 | $result = file_get_contents($filePath); |
1597 | 1597 | |
1598 | - if($result !== false) { |
|
1598 | + if ($result !== false) { |
|
1599 | 1599 | return $result; |
1600 | 1600 | } |
1601 | 1601 | |
@@ -1625,7 +1625,7 @@ discard block |
||
1625 | 1625 | { |
1626 | 1626 | $actual = realpath($path); |
1627 | 1627 | |
1628 | - if($actual === false) |
|
1628 | + if ($actual === false) |
|
1629 | 1629 | { |
1630 | 1630 | throw new FileHelper_Exception( |
1631 | 1631 | 'Folder does not exist', |
@@ -1637,7 +1637,7 @@ discard block |
||
1637 | 1637 | ); |
1638 | 1638 | } |
1639 | 1639 | |
1640 | - if(is_dir($path)) |
|
1640 | + if (is_dir($path)) |
|
1641 | 1641 | { |
1642 | 1642 | return self::normalizePath($actual); |
1643 | 1643 | } |
@@ -1659,7 +1659,7 @@ discard block |
||
1659 | 1659 | * @param string[] $paths |
1660 | 1660 | * @return FileHelper_PathsReducer |
1661 | 1661 | */ |
1662 | - public static function createPathsReducer(array $paths=array()) : FileHelper_PathsReducer |
|
1662 | + public static function createPathsReducer(array $paths = array()) : FileHelper_PathsReducer |
|
1663 | 1663 | { |
1664 | 1664 | return new FileHelper_PathsReducer(); |
1665 | 1665 | } |
@@ -55,12 +55,12 @@ discard block |
||
55 | 55 | */ |
56 | 56 | private function validate() : bool |
57 | 57 | { |
58 | - if($this->a->getUnits() !== $this->b->getUnits()) |
|
58 | + if ($this->a->getUnits() !== $this->b->getUnits()) |
|
59 | 59 | { |
60 | 60 | return false; |
61 | 61 | } |
62 | 62 | |
63 | - if($this->a->isEmpty() || $this->b->isEmpty()) |
|
63 | + if ($this->a->isEmpty() || $this->b->isEmpty()) |
|
64 | 64 | { |
65 | 65 | return false; |
66 | 66 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | public function isBiggerThan() : bool |
72 | 72 | { |
73 | - if($this->valid === false) |
|
73 | + if ($this->valid === false) |
|
74 | 74 | { |
75 | 75 | return false; |
76 | 76 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | public function isBiggerEqual() : bool |
82 | 82 | { |
83 | - if($this->valid === false) |
|
83 | + if ($this->valid === false) |
|
84 | 84 | { |
85 | 85 | return false; |
86 | 86 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | |
91 | 91 | public function isSmallerThan() : bool |
92 | 92 | { |
93 | - if($this->valid === false) |
|
93 | + if ($this->valid === false) |
|
94 | 94 | { |
95 | 95 | return false; |
96 | 96 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | public function isSmallerEqual() : bool |
102 | 102 | { |
103 | - if($this->valid === false) |
|
103 | + if ($this->valid === false) |
|
104 | 104 | { |
105 | 105 | return false; |
106 | 106 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | |
111 | 111 | public function isEqual() : bool |
112 | 112 | { |
113 | - if($this->valid === false) |
|
113 | + if ($this->valid === false) |
|
114 | 114 | { |
115 | 115 | return false; |
116 | 116 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | { |
15 | 15 | $number = parseNumber($value, true); |
16 | 16 | |
17 | - if($number->getNumber() === $this->getNumber() && $number->hasUnits() === $this->hasUnits()) |
|
17 | + if ($number->getNumber() === $this->getNumber() && $number->hasUnits() === $this->hasUnits()) |
|
18 | 18 | { |
19 | 19 | return $this; |
20 | 20 | } |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | { |
31 | 31 | $number = parseNumber($number, true); |
32 | 32 | |
33 | - if($number->getNumber() === $this->getNumber() && $number->getUnits() === $this->getUnits()) |
|
33 | + if ($number->getNumber() === $this->getNumber() && $number->getUnits() === $this->getUnits()) |
|
34 | 34 | { |
35 | 35 | return $this; |
36 | 36 | } |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $number = parseNumber($this, true); |
48 | 48 | $number->add($value); |
49 | 49 | |
50 | - if($number->getNumber() === $this->getNumber()) |
|
50 | + if ($number->getNumber() === $this->getNumber()) |
|
51 | 51 | { |
52 | 52 | return $this; |
53 | 53 | } |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $number = parseNumber($this, true); |
65 | 65 | $number->subtract($value); |
66 | 66 | |
67 | - if($number->getNumber() === $this->getNumber()) |
|
67 | + if ($number->getNumber() === $this->getNumber()) |
|
68 | 68 | { |
69 | 69 | return $this; |
70 | 70 | } |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | $number = parseNumber($this, true); |
82 | 82 | $number->subtractPercent($percent); |
83 | 83 | |
84 | - if($number->getNumber() === $this->getNumber()) |
|
84 | + if ($number->getNumber() === $this->getNumber()) |
|
85 | 85 | { |
86 | 86 | return $this; |
87 | 87 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $number = parseNumber($this, true); |
99 | 99 | $number->addPercent($percent); |
100 | 100 | |
101 | - if($number->getNumber() === $this->getNumber()) |
|
101 | + if ($number->getNumber() === $this->getNumber()) |
|
102 | 102 | { |
103 | 103 | return $this; |
104 | 104 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | $number = parseNumber($this, true); |
115 | 115 | $number->floorEven(); |
116 | 116 | |
117 | - if($number->getNumber() === $this->getNumber()) |
|
117 | + if ($number->getNumber() === $this->getNumber()) |
|
118 | 118 | { |
119 | 119 | return $this; |
120 | 120 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | $number = parseNumber($this, true); |
131 | 131 | $number->ceilEven(); |
132 | 132 | |
133 | - if($number->getNumber() === $this->getNumber()) |
|
133 | + if ($number->getNumber() === $this->getNumber()) |
|
134 | 134 | { |
135 | 135 | return $this; |
136 | 136 | } |