@@ -22,17 +22,17 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | class BaseException extends \Exception |
| 24 | 24 | { |
| 25 | - /** |
|
| 26 | - * @var string |
|
| 27 | - */ |
|
| 25 | + /** |
|
| 26 | + * @var string |
|
| 27 | + */ |
|
| 28 | 28 | protected $details; |
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @param string $message |
|
| 32 | - * @param string $details |
|
| 33 | - * @param int $code |
|
| 34 | - * @param \Exception $previous |
|
| 35 | - */ |
|
| 30 | + /** |
|
| 31 | + * @param string $message |
|
| 32 | + * @param string $details |
|
| 33 | + * @param int $code |
|
| 34 | + * @param \Exception $previous |
|
| 35 | + */ |
|
| 36 | 36 | public function __construct(string $message, $details=null, $code=null, $previous=null) |
| 37 | 37 | { |
| 38 | 38 | parent::__construct($message, $code, $previous); |
@@ -40,10 +40,10 @@ discard block |
||
| 40 | 40 | $this->details = $details; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Retrieves the detailed error description, if any. |
|
| 45 | - * @return string |
|
| 46 | - */ |
|
| 43 | + /** |
|
| 44 | + * Retrieves the detailed error description, if any. |
|
| 45 | + * @return string |
|
| 46 | + */ |
|
| 47 | 47 | public function getDetails() : string |
| 48 | 48 | { |
| 49 | 49 | if($this->details !== null) { |
@@ -53,9 +53,9 @@ discard block |
||
| 53 | 53 | return ''; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * Displays pertinent information on the exception. |
|
| 58 | - */ |
|
| 56 | + /** |
|
| 57 | + * Displays pertinent information on the exception. |
|
| 58 | + */ |
|
| 59 | 59 | public function display() : void |
| 60 | 60 | { |
| 61 | 61 | if(!headers_sent()) { |
@@ -65,20 +65,20 @@ discard block |
||
| 65 | 65 | echo $this->getInfo(); |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - /** |
|
| 69 | - * Retrieves information on the exception that can be |
|
| 70 | - * easily accessed. |
|
| 71 | - * |
|
| 72 | - * @return ConvertHelper_ThrowableInfo |
|
| 73 | - */ |
|
| 68 | + /** |
|
| 69 | + * Retrieves information on the exception that can be |
|
| 70 | + * easily accessed. |
|
| 71 | + * |
|
| 72 | + * @return ConvertHelper_ThrowableInfo |
|
| 73 | + */ |
|
| 74 | 74 | public function getInfo() : ConvertHelper_ThrowableInfo |
| 75 | 75 | { |
| 76 | 76 | return ConvertHelper::throwable2info($this); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - /** |
|
| 80 | - * Dumps a current PHP function trace, as a text only string. |
|
| 81 | - */ |
|
| 79 | + /** |
|
| 80 | + * Dumps a current PHP function trace, as a text only string. |
|
| 81 | + */ |
|
| 82 | 82 | public static function dumpTraceAsString() : void |
| 83 | 83 | { |
| 84 | 84 | try |
@@ -91,9 +91,9 @@ discard block |
||
| 91 | 91 | } |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - /** |
|
| 95 | - * Dumps a current PHP function trace, with HTML styling. |
|
| 96 | - */ |
|
| 94 | + /** |
|
| 95 | + * Dumps a current PHP function trace, with HTML styling. |
|
| 96 | + */ |
|
| 97 | 97 | public static function dumpTraceAsHTML() : void |
| 98 | 98 | { |
| 99 | 99 | try |
@@ -108,13 +108,13 @@ discard block |
||
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - /** |
|
| 112 | - * Creates an exception info instance from a throwable instance. |
|
| 113 | - * |
|
| 114 | - * @param Throwable $e |
|
| 115 | - * @return ConvertHelper_ThrowableInfo |
|
| 116 | - * @see ConvertHelper::throwable2info() |
|
| 117 | - */ |
|
| 111 | + /** |
|
| 112 | + * Creates an exception info instance from a throwable instance. |
|
| 113 | + * |
|
| 114 | + * @param Throwable $e |
|
| 115 | + * @return ConvertHelper_ThrowableInfo |
|
| 116 | + * @see ConvertHelper::throwable2info() |
|
| 117 | + */ |
|
| 118 | 118 | public static function createInfo(Throwable $e) : ConvertHelper_ThrowableInfo |
| 119 | 119 | { |
| 120 | 120 | return ConvertHelper::throwable2info($e); |
@@ -33,24 +33,24 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | class StringBuilder implements StringBuilder_Interface |
| 35 | 35 | { |
| 36 | - /** |
|
| 37 | - * @var string |
|
| 38 | - */ |
|
| 36 | + /** |
|
| 37 | + * @var string |
|
| 38 | + */ |
|
| 39 | 39 | protected $separator = ' '; |
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * @var string[] |
|
| 43 | - */ |
|
| 41 | + /** |
|
| 42 | + * @var string[] |
|
| 43 | + */ |
|
| 44 | 44 | protected $strings = array(); |
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * @var string |
|
| 48 | - */ |
|
| 46 | + /** |
|
| 47 | + * @var string |
|
| 48 | + */ |
|
| 49 | 49 | protected $mode = 'html'; |
| 50 | 50 | |
| 51 | - /** |
|
| 52 | - * @var string |
|
| 53 | - */ |
|
| 51 | + /** |
|
| 52 | + * @var string |
|
| 53 | + */ |
|
| 54 | 54 | protected $noSpace = '§!§'; |
| 55 | 55 | |
| 56 | 56 | public function __construct() |
@@ -58,12 +58,12 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - /** |
|
| 62 | - * Adds a subject as a string. Is ignored if empty. |
|
| 63 | - * |
|
| 64 | - * @param string|number|StringBuilder_Interface $string |
|
| 65 | - * @return $this |
|
| 66 | - */ |
|
| 61 | + /** |
|
| 62 | + * Adds a subject as a string. Is ignored if empty. |
|
| 63 | + * |
|
| 64 | + * @param string|number|StringBuilder_Interface $string |
|
| 65 | + * @return $this |
|
| 66 | + */ |
|
| 67 | 67 | public function add($string) : StringBuilder |
| 68 | 68 | { |
| 69 | 69 | $string = strval($string); |
@@ -76,57 +76,57 @@ discard block |
||
| 76 | 76 | return $this; |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - /** |
|
| 80 | - * Adds a string without appending an automatic space. |
|
| 81 | - * |
|
| 82 | - * @param string|number|StringBuilder_Interface $string |
|
| 83 | - * @return $this |
|
| 84 | - */ |
|
| 79 | + /** |
|
| 80 | + * Adds a string without appending an automatic space. |
|
| 81 | + * |
|
| 82 | + * @param string|number|StringBuilder_Interface $string |
|
| 83 | + * @return $this |
|
| 84 | + */ |
|
| 85 | 85 | public function nospace($string) : StringBuilder |
| 86 | 86 | { |
| 87 | 87 | return $this->add($this->noSpace.strval($string)); |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - /** |
|
| 91 | - * Adds raw HTML code. Does not add an automatic space. |
|
| 92 | - * |
|
| 93 | - * @param string|number|StringBuilder_Interface $html |
|
| 94 | - * @return $this |
|
| 95 | - */ |
|
| 90 | + /** |
|
| 91 | + * Adds raw HTML code. Does not add an automatic space. |
|
| 92 | + * |
|
| 93 | + * @param string|number|StringBuilder_Interface $html |
|
| 94 | + * @return $this |
|
| 95 | + */ |
|
| 96 | 96 | public function html($html) : StringBuilder |
| 97 | 97 | { |
| 98 | 98 | return $this->nospace($html); |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - /** |
|
| 102 | - * Adds an unordered list with the specified items. |
|
| 103 | - * |
|
| 104 | - * @param array<int,string|number|StringBuilder_Interface> $items |
|
| 105 | - * @return $this |
|
| 106 | - */ |
|
| 101 | + /** |
|
| 102 | + * Adds an unordered list with the specified items. |
|
| 103 | + * |
|
| 104 | + * @param array<int,string|number|StringBuilder_Interface> $items |
|
| 105 | + * @return $this |
|
| 106 | + */ |
|
| 107 | 107 | public function ul(array $items) : StringBuilder |
| 108 | 108 | { |
| 109 | 109 | return $this->list('ul', $items); |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | - /** |
|
| 113 | - * Adds an ordered list with the specified items. |
|
| 114 | - * |
|
| 115 | - * @param array<int,string|number|StringBuilder_Interface> $items |
|
| 116 | - * @return $this |
|
| 117 | - */ |
|
| 112 | + /** |
|
| 113 | + * Adds an ordered list with the specified items. |
|
| 114 | + * |
|
| 115 | + * @param array<int,string|number|StringBuilder_Interface> $items |
|
| 116 | + * @return $this |
|
| 117 | + */ |
|
| 118 | 118 | public function ol(array $items) : StringBuilder |
| 119 | 119 | { |
| 120 | 120 | return $this->list('ol', $items); |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | - /** |
|
| 124 | - * Creates a list tag with the items list. |
|
| 125 | - * |
|
| 126 | - * @param string $type The list type, `ol` or `ul`. |
|
| 127 | - * @param array<int,string|number|StringBuilder_Interface> $items |
|
| 128 | - * @return $this |
|
| 129 | - */ |
|
| 123 | + /** |
|
| 124 | + * Creates a list tag with the items list. |
|
| 125 | + * |
|
| 126 | + * @param string $type The list type, `ol` or `ul`. |
|
| 127 | + * @param array<int,string|number|StringBuilder_Interface> $items |
|
| 128 | + * @return $this |
|
| 129 | + */ |
|
| 130 | 130 | protected function list(string $type, array $items) : StringBuilder |
| 131 | 131 | { |
| 132 | 132 | return $this->html(sprintf( |
@@ -136,13 +136,13 @@ discard block |
||
| 136 | 136 | )); |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - /** |
|
| 140 | - * Add a translated string. |
|
| 141 | - * |
|
| 142 | - * @param string $format The native string to translate. |
|
| 143 | - * @param array<int,mixed> $arguments The variables to inject into the translated string, if any. |
|
| 144 | - * @return $this |
|
| 145 | - */ |
|
| 139 | + /** |
|
| 140 | + * Add a translated string. |
|
| 141 | + * |
|
| 142 | + * @param string $format The native string to translate. |
|
| 143 | + * @param array<int,mixed> $arguments The variables to inject into the translated string, if any. |
|
| 144 | + * @return $this |
|
| 145 | + */ |
|
| 146 | 146 | public function t(string $format, ...$arguments) : StringBuilder |
| 147 | 147 | { |
| 148 | 148 | if(!class_exists('\AppLocalize\Localization')) |
@@ -195,36 +195,36 @@ discard block |
||
| 195 | 195 | return $this->add(ConvertHelper::duration2string($since)); |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - /** |
|
| 199 | - * Adds HTML double quotes around the string. |
|
| 200 | - * |
|
| 201 | - * @param string|number|StringBuilder_Interface $string |
|
| 202 | - * @return $this |
|
| 203 | - */ |
|
| 198 | + /** |
|
| 199 | + * Adds HTML double quotes around the string. |
|
| 200 | + * |
|
| 201 | + * @param string|number|StringBuilder_Interface $string |
|
| 202 | + * @return $this |
|
| 203 | + */ |
|
| 204 | 204 | public function quote($string) |
| 205 | 205 | { |
| 206 | 206 | return $this->sf('"%s"', strval($string)); |
| 207 | 207 | } |
| 208 | 208 | |
| 209 | - /** |
|
| 210 | - * Adds a text that is meant as a reference to an UI element, |
|
| 211 | - * like a menu item, button, etc. |
|
| 212 | - * |
|
| 213 | - * @param string|number|StringBuilder_Interface $string |
|
| 214 | - * @return $this |
|
| 215 | - */ |
|
| 209 | + /** |
|
| 210 | + * Adds a text that is meant as a reference to an UI element, |
|
| 211 | + * like a menu item, button, etc. |
|
| 212 | + * |
|
| 213 | + * @param string|number|StringBuilder_Interface $string |
|
| 214 | + * @return $this |
|
| 215 | + */ |
|
| 216 | 216 | public function reference($string) : StringBuilder |
| 217 | 217 | { |
| 218 | 218 | return $this->sf('"%s"', $string); |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - /** |
|
| 222 | - * Add a string using the `sprintf` method. |
|
| 223 | - * |
|
| 224 | - * @param string $format The format string |
|
| 225 | - * @param string|number|StringBuilder_Interface ...$arguments The variables to inject |
|
| 226 | - * @return $this |
|
| 227 | - */ |
|
| 221 | + /** |
|
| 222 | + * Add a string using the `sprintf` method. |
|
| 223 | + * |
|
| 224 | + * @param string $format The format string |
|
| 225 | + * @param string|number|StringBuilder_Interface ...$arguments The variables to inject |
|
| 226 | + * @return $this |
|
| 227 | + */ |
|
| 228 | 228 | public function sf(string $format, ...$arguments) : StringBuilder |
| 229 | 229 | { |
| 230 | 230 | array_unshift($arguments, $format); |
@@ -232,12 +232,12 @@ discard block |
||
| 232 | 232 | return $this->add(call_user_func_array('sprintf', $arguments)); |
| 233 | 233 | } |
| 234 | 234 | |
| 235 | - /** |
|
| 236 | - * Adds a bold string. |
|
| 237 | - * |
|
| 238 | - * @param string|number|StringBuilder_Interface $string |
|
| 239 | - * @return $this |
|
| 240 | - */ |
|
| 235 | + /** |
|
| 236 | + * Adds a bold string. |
|
| 237 | + * |
|
| 238 | + * @param string|number|StringBuilder_Interface $string |
|
| 239 | + * @return $this |
|
| 240 | + */ |
|
| 241 | 241 | public function bold($string) : StringBuilder |
| 242 | 242 | { |
| 243 | 243 | return $this->sf( |
@@ -246,15 +246,15 @@ discard block |
||
| 246 | 246 | ); |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - /** |
|
| 250 | - * Adds an HTML `<br>` tag. |
|
| 251 | - * |
|
| 252 | - * Note: for adding a newline character instead, |
|
| 253 | - * use {@see StringBuilder::eol()}. |
|
| 254 | - * |
|
| 255 | - * @return $this |
|
| 256 | - * @see StringBuilder::eol() |
|
| 257 | - */ |
|
| 249 | + /** |
|
| 250 | + * Adds an HTML `<br>` tag. |
|
| 251 | + * |
|
| 252 | + * Note: for adding a newline character instead, |
|
| 253 | + * use {@see StringBuilder::eol()}. |
|
| 254 | + * |
|
| 255 | + * @return $this |
|
| 256 | + * @see StringBuilder::eol() |
|
| 257 | + */ |
|
| 258 | 258 | public function nl() : StringBuilder |
| 259 | 259 | { |
| 260 | 260 | return $this->html('<br>'); |
@@ -271,42 +271,42 @@ discard block |
||
| 271 | 271 | return $this->nospace(PHP_EOL); |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | - /** |
|
| 275 | - * Adds the current time, in the format <code>H:i:s</code>. |
|
| 276 | - * |
|
| 277 | - * @return $this |
|
| 278 | - */ |
|
| 274 | + /** |
|
| 275 | + * Adds the current time, in the format <code>H:i:s</code>. |
|
| 276 | + * |
|
| 277 | + * @return $this |
|
| 278 | + */ |
|
| 279 | 279 | public function time() : StringBuilder |
| 280 | 280 | { |
| 281 | 281 | return $this->add(date('H:i:s')); |
| 282 | 282 | } |
| 283 | 283 | |
| 284 | - /** |
|
| 285 | - * Adds the "Note:" text. |
|
| 286 | - * |
|
| 287 | - * @return $this |
|
| 288 | - */ |
|
| 284 | + /** |
|
| 285 | + * Adds the "Note:" text. |
|
| 286 | + * |
|
| 287 | + * @return $this |
|
| 288 | + */ |
|
| 289 | 289 | public function note() : StringBuilder |
| 290 | 290 | { |
| 291 | 291 | return $this->t('Note:'); |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - /** |
|
| 295 | - * Like {@see StringBuilder::note()}, but as bold text. |
|
| 296 | - * |
|
| 297 | - * @return $this |
|
| 298 | - */ |
|
| 294 | + /** |
|
| 295 | + * Like {@see StringBuilder::note()}, but as bold text. |
|
| 296 | + * |
|
| 297 | + * @return $this |
|
| 298 | + */ |
|
| 299 | 299 | public function noteBold() : StringBuilder |
| 300 | 300 | { |
| 301 | 301 | return $this->bold(sb()->note()); |
| 302 | 302 | } |
| 303 | 303 | |
| 304 | - /** |
|
| 305 | - * Adds the "Hint:" text. |
|
| 306 | - * |
|
| 307 | - * @return $this |
|
| 308 | - * @see StringBuilder::hintBold() |
|
| 309 | - */ |
|
| 304 | + /** |
|
| 305 | + * Adds the "Hint:" text. |
|
| 306 | + * |
|
| 307 | + * @return $this |
|
| 308 | + * @see StringBuilder::hintBold() |
|
| 309 | + */ |
|
| 310 | 310 | public function hint() : StringBuilder |
| 311 | 311 | { |
| 312 | 312 | return $this->t('Hint:'); |
@@ -322,12 +322,12 @@ discard block |
||
| 322 | 322 | return $this->bold(sb()->hint()); |
| 323 | 323 | } |
| 324 | 324 | |
| 325 | - /** |
|
| 326 | - * Adds two linebreaks. |
|
| 327 | - * |
|
| 328 | - * @param StringBuilder_Interface|string|NULL $content |
|
| 329 | - * @return $this |
|
| 330 | - */ |
|
| 325 | + /** |
|
| 326 | + * Adds two linebreaks. |
|
| 327 | + * |
|
| 328 | + * @param StringBuilder_Interface|string|NULL $content |
|
| 329 | + * @return $this |
|
| 330 | + */ |
|
| 331 | 331 | public function para($content=null) : StringBuilder |
| 332 | 332 | { |
| 333 | 333 | if($content !== null) { |
@@ -337,14 +337,14 @@ discard block |
||
| 337 | 337 | return $this->nl()->nl(); |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | - /** |
|
| 341 | - * Adds an anchor HTML tag. |
|
| 342 | - * |
|
| 343 | - * @param string $label |
|
| 344 | - * @param string $url |
|
| 345 | - * @param bool $newTab |
|
| 346 | - * @return $this |
|
| 347 | - */ |
|
| 340 | + /** |
|
| 341 | + * Adds an anchor HTML tag. |
|
| 342 | + * |
|
| 343 | + * @param string $label |
|
| 344 | + * @param string $url |
|
| 345 | + * @param bool $newTab |
|
| 346 | + * @return $this |
|
| 347 | + */ |
|
| 348 | 348 | public function link(string $label, string $url, bool $newTab=false) : StringBuilder |
| 349 | 349 | { |
| 350 | 350 | $target = ''; |
@@ -360,12 +360,12 @@ discard block |
||
| 360 | 360 | ); |
| 361 | 361 | } |
| 362 | 362 | |
| 363 | - /** |
|
| 364 | - * Wraps the string in a `code` tag. |
|
| 365 | - * |
|
| 366 | - * @param string|number|StringBuilder_Interface $string |
|
| 367 | - * @return $this |
|
| 368 | - */ |
|
| 363 | + /** |
|
| 364 | + * Wraps the string in a `code` tag. |
|
| 365 | + * |
|
| 366 | + * @param string|number|StringBuilder_Interface $string |
|
| 367 | + * @return $this |
|
| 368 | + */ |
|
| 369 | 369 | public function code($string) : StringBuilder |
| 370 | 370 | { |
| 371 | 371 | return $this->sf( |
@@ -374,24 +374,24 @@ discard block |
||
| 374 | 374 | ); |
| 375 | 375 | } |
| 376 | 376 | |
| 377 | - /** |
|
| 378 | - * Wraps the string in a `pre` tag. |
|
| 379 | - * |
|
| 380 | - * @param string|number|StringBuilder_Interface $string |
|
| 381 | - * @return $this |
|
| 382 | - */ |
|
| 377 | + /** |
|
| 378 | + * Wraps the string in a `pre` tag. |
|
| 379 | + * |
|
| 380 | + * @param string|number|StringBuilder_Interface $string |
|
| 381 | + * @return $this |
|
| 382 | + */ |
|
| 383 | 383 | public function pre($string) : StringBuilder |
| 384 | 384 | { |
| 385 | 385 | return $this->sf('<pre>%s</pre>', strval($string)); |
| 386 | 386 | } |
| 387 | 387 | |
| 388 | - /** |
|
| 389 | - * Wraps the text in a `span` tag with the specified classes. |
|
| 390 | - * |
|
| 391 | - * @param string|number|StringBuilder_Interface $string |
|
| 392 | - * @param string|string[] $classes |
|
| 393 | - * @return $this |
|
| 394 | - */ |
|
| 388 | + /** |
|
| 389 | + * Wraps the text in a `span` tag with the specified classes. |
|
| 390 | + * |
|
| 391 | + * @param string|number|StringBuilder_Interface $string |
|
| 392 | + * @param string|string[] $classes |
|
| 393 | + * @return $this |
|
| 394 | + */ |
|
| 395 | 395 | public function spanned($string, $classes) : StringBuilder |
| 396 | 396 | { |
| 397 | 397 | if(!is_array($classes)) |
@@ -50,53 +50,53 @@ discard block |
||
| 50 | 50 | const COLORFORMAT_HEX = 2; |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | - * @var string |
|
| 54 | - */ |
|
| 53 | + * @var string |
|
| 54 | + */ |
|
| 55 | 55 | protected $file; |
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * @var ImageHelper_Size |
|
| 59 | - */ |
|
| 57 | + /** |
|
| 58 | + * @var ImageHelper_Size |
|
| 59 | + */ |
|
| 60 | 60 | protected $info; |
| 61 | 61 | |
| 62 | - /** |
|
| 63 | - * @var string |
|
| 64 | - */ |
|
| 62 | + /** |
|
| 63 | + * @var string |
|
| 64 | + */ |
|
| 65 | 65 | protected $type; |
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * @var resource|NULL |
|
| 69 | - */ |
|
| 67 | + /** |
|
| 68 | + * @var resource|NULL |
|
| 69 | + */ |
|
| 70 | 70 | protected $newImage; |
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * @var resource |
|
| 74 | - */ |
|
| 72 | + /** |
|
| 73 | + * @var resource |
|
| 74 | + */ |
|
| 75 | 75 | protected $sourceImage; |
| 76 | 76 | |
| 77 | - /** |
|
| 78 | - * @var int |
|
| 79 | - */ |
|
| 77 | + /** |
|
| 78 | + * @var int |
|
| 79 | + */ |
|
| 80 | 80 | protected $width; |
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * @var int |
|
| 84 | - */ |
|
| 82 | + /** |
|
| 83 | + * @var int |
|
| 84 | + */ |
|
| 85 | 85 | protected $height; |
| 86 | 86 | |
| 87 | - /** |
|
| 88 | - * @var int |
|
| 89 | - */ |
|
| 87 | + /** |
|
| 88 | + * @var int |
|
| 89 | + */ |
|
| 90 | 90 | protected $newWidth = 0; |
| 91 | 91 | |
| 92 | - /** |
|
| 93 | - * @var int |
|
| 94 | - */ |
|
| 92 | + /** |
|
| 93 | + * @var int |
|
| 94 | + */ |
|
| 95 | 95 | protected $newHeight = 0; |
| 96 | 96 | |
| 97 | - /** |
|
| 98 | - * @var int |
|
| 99 | - */ |
|
| 97 | + /** |
|
| 98 | + * @var int |
|
| 99 | + */ |
|
| 100 | 100 | protected $quality = 85; |
| 101 | 101 | |
| 102 | 102 | /** |
@@ -201,17 +201,17 @@ discard block |
||
| 201 | 201 | } |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | - /** |
|
| 205 | - * Factory method: creates a new helper with a blank image. |
|
| 206 | - * |
|
| 207 | - * @param integer $width |
|
| 208 | - * @param integer $height |
|
| 209 | - * @param string $type The target file type when saving |
|
| 210 | - * @return ImageHelper |
|
| 211 | - * @throws ImageHelper_Exception |
|
| 212 | - * |
|
| 213 | - * @see ImageHelper::ERROR_CANNOT_CREATE_IMAGE_OBJECT |
|
| 214 | - */ |
|
| 204 | + /** |
|
| 205 | + * Factory method: creates a new helper with a blank image. |
|
| 206 | + * |
|
| 207 | + * @param integer $width |
|
| 208 | + * @param integer $height |
|
| 209 | + * @param string $type The target file type when saving |
|
| 210 | + * @return ImageHelper |
|
| 211 | + * @throws ImageHelper_Exception |
|
| 212 | + * |
|
| 213 | + * @see ImageHelper::ERROR_CANNOT_CREATE_IMAGE_OBJECT |
|
| 214 | + */ |
|
| 215 | 215 | public static function createNew($width, $height, $type='png') |
| 216 | 216 | { |
| 217 | 217 | $img = imagecreatetruecolor($width, $height); |
@@ -226,18 +226,18 @@ discard block |
||
| 226 | 226 | ); |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | - /** |
|
| 230 | - * Factory method: creates an image helper from an |
|
| 231 | - * existing image resource. |
|
| 232 | - * |
|
| 233 | - * Note: while the resource is type independent, the |
|
| 234 | - * type parameter is required for some methods, as well |
|
| 235 | - * as to be able to save the image. |
|
| 236 | - * |
|
| 237 | - * @param resource $resource |
|
| 238 | - * @param string $type The target image type, e.g. "jpeg", "png", etc. |
|
| 239 | - * @return ImageHelper |
|
| 240 | - */ |
|
| 229 | + /** |
|
| 230 | + * Factory method: creates an image helper from an |
|
| 231 | + * existing image resource. |
|
| 232 | + * |
|
| 233 | + * Note: while the resource is type independent, the |
|
| 234 | + * type parameter is required for some methods, as well |
|
| 235 | + * as to be able to save the image. |
|
| 236 | + * |
|
| 237 | + * @param resource $resource |
|
| 238 | + * @param string $type The target image type, e.g. "jpeg", "png", etc. |
|
| 239 | + * @return ImageHelper |
|
| 240 | + */ |
|
| 241 | 241 | public static function createFromResource($resource, ?string $type=null) |
| 242 | 242 | { |
| 243 | 243 | self::requireResource($resource); |
@@ -245,29 +245,29 @@ discard block |
||
| 245 | 245 | return new ImageHelper(null, $resource, $type); |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - /** |
|
| 249 | - * Factory method: creates an image helper from an |
|
| 250 | - * image file on disk. |
|
| 251 | - * |
|
| 252 | - * @param string $file |
|
| 253 | - * @return ImageHelper |
|
| 254 | - */ |
|
| 248 | + /** |
|
| 249 | + * Factory method: creates an image helper from an |
|
| 250 | + * image file on disk. |
|
| 251 | + * |
|
| 252 | + * @param string $file |
|
| 253 | + * @return ImageHelper |
|
| 254 | + */ |
|
| 255 | 255 | public static function createFromFile(string $file) : ImageHelper |
| 256 | 256 | { |
| 257 | 257 | return new ImageHelper($file); |
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - /** |
|
| 261 | - * Sets a global image helper configuration value. Available |
|
| 262 | - * configuration settings are: |
|
| 263 | - * |
|
| 264 | - * <ul> |
|
| 265 | - * <li><code>auto-memory-adjustment</code> <i>boolean</i> Whether totry and adjust the memory limit automatically so there will be enough to load/process the target image.</li> |
|
| 266 | - * </ul> |
|
| 267 | - * |
|
| 268 | - * @param string $name |
|
| 269 | - * @param mixed $value |
|
| 270 | - */ |
|
| 260 | + /** |
|
| 261 | + * Sets a global image helper configuration value. Available |
|
| 262 | + * configuration settings are: |
|
| 263 | + * |
|
| 264 | + * <ul> |
|
| 265 | + * <li><code>auto-memory-adjustment</code> <i>boolean</i> Whether totry and adjust the memory limit automatically so there will be enough to load/process the target image.</li> |
|
| 266 | + * </ul> |
|
| 267 | + * |
|
| 268 | + * @param string $name |
|
| 269 | + * @param mixed $value |
|
| 270 | + */ |
|
| 271 | 271 | public static function setConfig($name, $value) |
| 272 | 272 | { |
| 273 | 273 | if(isset(self::$config[$name])) { |
@@ -275,22 +275,22 @@ discard block |
||
| 275 | 275 | } |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - /** |
|
| 279 | - * Shorthand for setting the automatic memory adjustment |
|
| 280 | - * global configuration setting. |
|
| 281 | - * |
|
| 282 | - * @param bool $enabled |
|
| 283 | - */ |
|
| 278 | + /** |
|
| 279 | + * Shorthand for setting the automatic memory adjustment |
|
| 280 | + * global configuration setting. |
|
| 281 | + * |
|
| 282 | + * @param bool $enabled |
|
| 283 | + */ |
|
| 284 | 284 | public static function setAutoMemoryAdjustment($enabled=true) |
| 285 | 285 | { |
| 286 | 286 | self::setConfig('auto-memory-adjustment', $enabled); |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | - /** |
|
| 290 | - * Duplicates an image resource. |
|
| 291 | - * @param resource $img |
|
| 292 | - * @return resource |
|
| 293 | - */ |
|
| 289 | + /** |
|
| 290 | + * Duplicates an image resource. |
|
| 291 | + * @param resource $img |
|
| 292 | + * @return resource |
|
| 293 | + */ |
|
| 294 | 294 | protected function duplicateImage($img) |
| 295 | 295 | { |
| 296 | 296 | self::requireResource($img); |
@@ -302,12 +302,12 @@ discard block |
||
| 302 | 302 | return $duplicate; |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - /** |
|
| 306 | - * Duplicates the current state of the image into a new |
|
| 307 | - * image helper instance. |
|
| 308 | - * |
|
| 309 | - * @return ImageHelper |
|
| 310 | - */ |
|
| 305 | + /** |
|
| 306 | + * Duplicates the current state of the image into a new |
|
| 307 | + * image helper instance. |
|
| 308 | + * |
|
| 309 | + * @return ImageHelper |
|
| 310 | + */ |
|
| 311 | 311 | public function duplicate() |
| 312 | 312 | { |
| 313 | 313 | return ImageHelper::createFromResource($this->duplicateImage($this->newImage)); |
@@ -495,13 +495,13 @@ discard block |
||
| 495 | 495 | )); |
| 496 | 496 | } |
| 497 | 497 | |
| 498 | - /** |
|
| 499 | - * Resamples the image to a new width, maintaining |
|
| 500 | - * aspect ratio. |
|
| 501 | - * |
|
| 502 | - * @param int $width |
|
| 503 | - * @return ImageHelper |
|
| 504 | - */ |
|
| 498 | + /** |
|
| 499 | + * Resamples the image to a new width, maintaining |
|
| 500 | + * aspect ratio. |
|
| 501 | + * |
|
| 502 | + * @param int $width |
|
| 503 | + * @return ImageHelper |
|
| 504 | + */ |
|
| 505 | 505 | public function resampleByWidth(int $width) : ImageHelper |
| 506 | 506 | { |
| 507 | 507 | $size = $this->getSizeByWidth($width); |
@@ -511,12 +511,12 @@ discard block |
||
| 511 | 511 | return $this; |
| 512 | 512 | } |
| 513 | 513 | |
| 514 | - /** |
|
| 515 | - * Resamples the image by height, and creates a new image file on disk. |
|
| 516 | - * |
|
| 517 | - * @param int $height |
|
| 518 | - * @return ImageHelper |
|
| 519 | - */ |
|
| 514 | + /** |
|
| 515 | + * Resamples the image by height, and creates a new image file on disk. |
|
| 516 | + * |
|
| 517 | + * @param int $height |
|
| 518 | + * @return ImageHelper |
|
| 519 | + */ |
|
| 520 | 520 | public function resampleByHeight($height) : ImageHelper |
| 521 | 521 | { |
| 522 | 522 | $size = $this->getSizeByHeight($height); |
@@ -524,13 +524,13 @@ discard block |
||
| 524 | 524 | return $this->resampleImage($size->getWidth(), $size->getHeight()); |
| 525 | 525 | } |
| 526 | 526 | |
| 527 | - /** |
|
| 528 | - * Resamples the image without keeping the aspect ratio. |
|
| 529 | - * |
|
| 530 | - * @param int $width |
|
| 531 | - * @param int $height |
|
| 532 | - * @return ImageHelper |
|
| 533 | - */ |
|
| 527 | + /** |
|
| 528 | + * Resamples the image without keeping the aspect ratio. |
|
| 529 | + * |
|
| 530 | + * @param int $width |
|
| 531 | + * @param int $height |
|
| 532 | + * @return ImageHelper |
|
| 533 | + */ |
|
| 534 | 534 | public function resample(?int $width = null, ?int $height = null) : ImageHelper |
| 535 | 535 | { |
| 536 | 536 | if($this->isVector()) { |
@@ -595,12 +595,12 @@ discard block |
||
| 595 | 595 | |
| 596 | 596 | protected $alpha = false; |
| 597 | 597 | |
| 598 | - /** |
|
| 599 | - * Configures the specified image resource to make it alpha compatible. |
|
| 600 | - * |
|
| 601 | - * @param resource $canvas |
|
| 602 | - * @param bool $fill Whether to fill the whole canvas with the transparency |
|
| 603 | - */ |
|
| 598 | + /** |
|
| 599 | + * Configures the specified image resource to make it alpha compatible. |
|
| 600 | + * |
|
| 601 | + * @param resource $canvas |
|
| 602 | + * @param bool $fill Whether to fill the whole canvas with the transparency |
|
| 603 | + */ |
|
| 604 | 604 | public static function addAlphaSupport($canvas, $fill=true) |
| 605 | 605 | { |
| 606 | 606 | self::requireResource($canvas); |
@@ -715,12 +715,12 @@ discard block |
||
| 715 | 715 | $this->quality = $quality * 1; |
| 716 | 716 | } |
| 717 | 717 | |
| 718 | - /** |
|
| 719 | - * Attempts to adjust the memory to the required size |
|
| 720 | - * to work with the current image. |
|
| 721 | - * |
|
| 722 | - * @return boolean |
|
| 723 | - */ |
|
| 718 | + /** |
|
| 719 | + * Attempts to adjust the memory to the required size |
|
| 720 | + * to work with the current image. |
|
| 721 | + * |
|
| 722 | + * @return boolean |
|
| 723 | + */ |
|
| 724 | 724 | protected function adjustMemory() : bool |
| 725 | 725 | { |
| 726 | 726 | if(!self::$config['auto-memory-adjustment']) { |
@@ -760,27 +760,27 @@ discard block |
||
| 760 | 760 | return false; |
| 761 | 761 | } |
| 762 | 762 | |
| 763 | - /** |
|
| 764 | - * Stretches the image to the specified dimensions. |
|
| 765 | - * |
|
| 766 | - * @param int $width |
|
| 767 | - * @param int $height |
|
| 768 | - * @return ImageHelper |
|
| 769 | - */ |
|
| 763 | + /** |
|
| 764 | + * Stretches the image to the specified dimensions. |
|
| 765 | + * |
|
| 766 | + * @param int $width |
|
| 767 | + * @param int $height |
|
| 768 | + * @return ImageHelper |
|
| 769 | + */ |
|
| 770 | 770 | public function stretch(int $width, int $height) : ImageHelper |
| 771 | 771 | { |
| 772 | 772 | return $this->resampleImage($width, $height); |
| 773 | 773 | } |
| 774 | 774 | |
| 775 | - /** |
|
| 776 | - * Creates a new image from the current image, |
|
| 777 | - * resampling it to the new size. |
|
| 778 | - * |
|
| 779 | - * @param int $newWidth |
|
| 780 | - * @param int $newHeight |
|
| 781 | - * @throws ImageHelper_Exception |
|
| 782 | - * @return ImageHelper |
|
| 783 | - */ |
|
| 775 | + /** |
|
| 776 | + * Creates a new image from the current image, |
|
| 777 | + * resampling it to the new size. |
|
| 778 | + * |
|
| 779 | + * @param int $newWidth |
|
| 780 | + * @param int $newHeight |
|
| 781 | + * @throws ImageHelper_Exception |
|
| 782 | + * @return ImageHelper |
|
| 783 | + */ |
|
| 784 | 784 | protected function resampleImage(int $newWidth, int $newHeight) : ImageHelper |
| 785 | 785 | { |
| 786 | 786 | if($this->isVector()) { |
@@ -849,17 +849,17 @@ discard block |
||
| 849 | 849 | return array_unique($types); |
| 850 | 850 | } |
| 851 | 851 | |
| 852 | - /** |
|
| 853 | - * Displays an existing image resource. |
|
| 854 | - * |
|
| 855 | - * @param resource $resource |
|
| 856 | - * @param string $imageType The image format to send, i.e. "jpeg", "png" |
|
| 857 | - * @param int $quality The quality to use for the image. This is 0-9 (0=no compression, 9=max) for PNG, and 0-100 (0=lowest, 100=highest quality) for JPG |
|
| 858 | - * |
|
| 859 | - * @throws ImageHelper_Exception |
|
| 860 | - * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 861 | - * @see ImageHelper::ERROR_INVALID_STREAM_IMAGE_TYPE |
|
| 862 | - */ |
|
| 852 | + /** |
|
| 853 | + * Displays an existing image resource. |
|
| 854 | + * |
|
| 855 | + * @param resource $resource |
|
| 856 | + * @param string $imageType The image format to send, i.e. "jpeg", "png" |
|
| 857 | + * @param int $quality The quality to use for the image. This is 0-9 (0=no compression, 9=max) for PNG, and 0-100 (0=lowest, 100=highest quality) for JPG |
|
| 858 | + * |
|
| 859 | + * @throws ImageHelper_Exception |
|
| 860 | + * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 861 | + * @see ImageHelper::ERROR_INVALID_STREAM_IMAGE_TYPE |
|
| 862 | + */ |
|
| 863 | 863 | public static function displayImageStream($resource, string $imageType, int $quality=-1) : void |
| 864 | 864 | { |
| 865 | 865 | self::requireResource($resource); |
@@ -942,11 +942,11 @@ discard block |
||
| 942 | 942 | readfile($imageFile); |
| 943 | 943 | } |
| 944 | 944 | |
| 945 | - /** |
|
| 946 | - * Displays the current image. |
|
| 947 | - * |
|
| 948 | - * NOTE: You must call `exit()` manually after this. |
|
| 949 | - */ |
|
| 945 | + /** |
|
| 946 | + * Displays the current image. |
|
| 947 | + * |
|
| 948 | + * NOTE: You must call `exit()` manually after this. |
|
| 949 | + */ |
|
| 950 | 950 | public function display() : void |
| 951 | 951 | { |
| 952 | 952 | $this->displayImageStream( |
@@ -970,16 +970,16 @@ discard block |
||
| 970 | 970 | return $this->trimImage($this->newImage, $color); |
| 971 | 971 | } |
| 972 | 972 | |
| 973 | - /** |
|
| 974 | - * Retrieves a color definition by its index. |
|
| 975 | - * |
|
| 976 | - * @param resource $img A valid image resource. |
|
| 977 | - * @param int $colorIndex The color index, as returned by `imagecolorat` for example. |
|
| 978 | - * @return array<string,int> An array with red, green, blue and alpha keys. |
|
| 979 | - * |
|
| 980 | - * @throws ImageHelper_Exception |
|
| 981 | - * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 982 | - */ |
|
| 973 | + /** |
|
| 974 | + * Retrieves a color definition by its index. |
|
| 975 | + * |
|
| 976 | + * @param resource $img A valid image resource. |
|
| 977 | + * @param int $colorIndex The color index, as returned by `imagecolorat` for example. |
|
| 978 | + * @return array<string,int> An array with red, green, blue and alpha keys. |
|
| 979 | + * |
|
| 980 | + * @throws ImageHelper_Exception |
|
| 981 | + * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 982 | + */ |
|
| 983 | 983 | public function getIndexedColors($img, int $colorIndex) : array |
| 984 | 984 | { |
| 985 | 985 | self::requireResource($img); |
@@ -999,18 +999,18 @@ discard block |
||
| 999 | 999 | ); |
| 1000 | 1000 | } |
| 1001 | 1001 | |
| 1002 | - /** |
|
| 1003 | - * Trims the specified image resource by removing the specified color. |
|
| 1004 | - * Also works with transparency. |
|
| 1005 | - * |
|
| 1006 | - * @param resource $img |
|
| 1007 | - * @param array|NULL $color A color definition, as an associative array with red, green, blue and alpha keys. If not specified, the color at pixel position 0,0 will be used. |
|
| 1008 | - * @return ImageHelper |
|
| 1009 | - * |
|
| 1010 | - * @throws ImageHelper_Exception |
|
| 1011 | - * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 1012 | - * @see ImageHelper::ERROR_CANNOT_CREATE_IMAGE_CANVAS |
|
| 1013 | - */ |
|
| 1002 | + /** |
|
| 1003 | + * Trims the specified image resource by removing the specified color. |
|
| 1004 | + * Also works with transparency. |
|
| 1005 | + * |
|
| 1006 | + * @param resource $img |
|
| 1007 | + * @param array|NULL $color A color definition, as an associative array with red, green, blue and alpha keys. If not specified, the color at pixel position 0,0 will be used. |
|
| 1008 | + * @return ImageHelper |
|
| 1009 | + * |
|
| 1010 | + * @throws ImageHelper_Exception |
|
| 1011 | + * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 1012 | + * @see ImageHelper::ERROR_CANNOT_CREATE_IMAGE_CANVAS |
|
| 1013 | + */ |
|
| 1014 | 1014 | protected function trimImage($img, ?array $color=null) : ImageHelper |
| 1015 | 1015 | { |
| 1016 | 1016 | if($this->isVector()) { |
@@ -1118,14 +1118,14 @@ discard block |
||
| 1118 | 1118 | return $this; |
| 1119 | 1119 | } |
| 1120 | 1120 | |
| 1121 | - /** |
|
| 1122 | - * Requires the subject to be a resource. |
|
| 1123 | - * |
|
| 1124 | - * @param resource|mixed $subject |
|
| 1125 | - * |
|
| 1126 | - * @throws ImageHelper_Exception |
|
| 1127 | - * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 1128 | - */ |
|
| 1121 | + /** |
|
| 1122 | + * Requires the subject to be a resource. |
|
| 1123 | + * |
|
| 1124 | + * @param resource|mixed $subject |
|
| 1125 | + * |
|
| 1126 | + * @throws ImageHelper_Exception |
|
| 1127 | + * @see ImageHelper::ERROR_NOT_A_RESOURCE |
|
| 1128 | + */ |
|
| 1129 | 1129 | protected static function requireResource($subject) : void |
| 1130 | 1130 | { |
| 1131 | 1131 | if(is_resource($subject)) { |
@@ -1142,14 +1142,14 @@ discard block |
||
| 1142 | 1142 | ); |
| 1143 | 1143 | } |
| 1144 | 1144 | |
| 1145 | - /** |
|
| 1146 | - * Creates a new image resource, with transparent background. |
|
| 1147 | - * |
|
| 1148 | - * @param int $width |
|
| 1149 | - * @param int $height |
|
| 1150 | - * @throws ImageHelper_Exception |
|
| 1151 | - * @return resource |
|
| 1152 | - */ |
|
| 1145 | + /** |
|
| 1146 | + * Creates a new image resource, with transparent background. |
|
| 1147 | + * |
|
| 1148 | + * @param int $width |
|
| 1149 | + * @param int $height |
|
| 1150 | + * @throws ImageHelper_Exception |
|
| 1151 | + * @return resource |
|
| 1152 | + */ |
|
| 1153 | 1153 | protected function createNewImage(int $width, int $height) |
| 1154 | 1154 | { |
| 1155 | 1155 | $img = imagecreatetruecolor($width, $height); |
@@ -1168,54 +1168,54 @@ discard block |
||
| 1168 | 1168 | return $img; |
| 1169 | 1169 | } |
| 1170 | 1170 | |
| 1171 | - /** |
|
| 1172 | - * Whether the two specified colors are the same. |
|
| 1173 | - * |
|
| 1174 | - * @param array<string,int> $a |
|
| 1175 | - * @param array<string,int> $b |
|
| 1176 | - * @return boolean |
|
| 1177 | - */ |
|
| 1178 | - protected function colorsMatch(array $a, array $b) : bool |
|
| 1179 | - { |
|
| 1180 | - $parts = array('red', 'green', 'blue'); |
|
| 1181 | - foreach($parts as $part) { |
|
| 1182 | - if($a[$part] != $b[$part]) { |
|
| 1183 | - return false; |
|
| 1184 | - } |
|
| 1185 | - } |
|
| 1171 | + /** |
|
| 1172 | + * Whether the two specified colors are the same. |
|
| 1173 | + * |
|
| 1174 | + * @param array<string,int> $a |
|
| 1175 | + * @param array<string,int> $b |
|
| 1176 | + * @return boolean |
|
| 1177 | + */ |
|
| 1178 | + protected function colorsMatch(array $a, array $b) : bool |
|
| 1179 | + { |
|
| 1180 | + $parts = array('red', 'green', 'blue'); |
|
| 1181 | + foreach($parts as $part) { |
|
| 1182 | + if($a[$part] != $b[$part]) { |
|
| 1183 | + return false; |
|
| 1184 | + } |
|
| 1185 | + } |
|
| 1186 | 1186 | |
| 1187 | - return true; |
|
| 1188 | - } |
|
| 1187 | + return true; |
|
| 1188 | + } |
|
| 1189 | 1189 | |
| 1190 | - public function fillWhite($x=0, $y=0) |
|
| 1191 | - { |
|
| 1192 | - $this->addRGBColor('white', 255, 255, 255); |
|
| 1190 | + public function fillWhite($x=0, $y=0) |
|
| 1191 | + { |
|
| 1192 | + $this->addRGBColor('white', 255, 255, 255); |
|
| 1193 | 1193 | return $this->fill('white', $x, $y); |
| 1194 | - } |
|
| 1194 | + } |
|
| 1195 | 1195 | |
| 1196 | - public function fillTransparent() : ImageHelper |
|
| 1197 | - { |
|
| 1196 | + public function fillTransparent() : ImageHelper |
|
| 1197 | + { |
|
| 1198 | 1198 | $this->enableAlpha(); |
| 1199 | 1199 | |
| 1200 | - self::fillImageTransparent($this->newImage); |
|
| 1200 | + self::fillImageTransparent($this->newImage); |
|
| 1201 | 1201 | |
| 1202 | - return $this; |
|
| 1203 | - } |
|
| 1202 | + return $this; |
|
| 1203 | + } |
|
| 1204 | 1204 | |
| 1205 | - public static function fillImageTransparent($resource) |
|
| 1206 | - { |
|
| 1207 | - self::requireResource($resource); |
|
| 1205 | + public static function fillImageTransparent($resource) |
|
| 1206 | + { |
|
| 1207 | + self::requireResource($resource); |
|
| 1208 | 1208 | |
| 1209 | - $transparent = imagecolorallocatealpha($resource, 89, 14, 207, 127); |
|
| 1210 | - imagecolortransparent ($resource, $transparent); |
|
| 1211 | - imagefill($resource, 0, 0, $transparent); |
|
| 1212 | - } |
|
| 1209 | + $transparent = imagecolorallocatealpha($resource, 89, 14, 207, 127); |
|
| 1210 | + imagecolortransparent ($resource, $transparent); |
|
| 1211 | + imagefill($resource, 0, 0, $transparent); |
|
| 1212 | + } |
|
| 1213 | 1213 | |
| 1214 | - public function fill($colorName, $x=0, $y=0) |
|
| 1215 | - { |
|
| 1216 | - imagefill($this->newImage, $x, $y, $this->colors[$colorName]); |
|
| 1217 | - return $this; |
|
| 1218 | - } |
|
| 1214 | + public function fill($colorName, $x=0, $y=0) |
|
| 1215 | + { |
|
| 1216 | + imagefill($this->newImage, $x, $y, $this->colors[$colorName]); |
|
| 1217 | + return $this; |
|
| 1218 | + } |
|
| 1219 | 1219 | |
| 1220 | 1220 | protected $colors = array(); |
| 1221 | 1221 | |
@@ -1236,9 +1236,9 @@ discard block |
||
| 1236 | 1236 | return $this; |
| 1237 | 1237 | } |
| 1238 | 1238 | |
| 1239 | - /** |
|
| 1240 | - * @return resource |
|
| 1241 | - */ |
|
| 1239 | + /** |
|
| 1240 | + * @return resource |
|
| 1241 | + */ |
|
| 1242 | 1242 | public function getImage() |
| 1243 | 1243 | { |
| 1244 | 1244 | return $this->newImage; |
@@ -1256,26 +1256,26 @@ discard block |
||
| 1256 | 1256 | return $this; |
| 1257 | 1257 | } |
| 1258 | 1258 | |
| 1259 | - /** |
|
| 1260 | - * Retrieves the size of the image. |
|
| 1261 | - * |
|
| 1262 | - * @return ImageHelper_Size |
|
| 1263 | - * @throws ImageHelper_Exception |
|
| 1264 | - * @see ImageHelper::ERROR_CANNOT_GET_IMAGE_SIZE |
|
| 1265 | - */ |
|
| 1266 | - public function getSize() : ImageHelper_Size |
|
| 1259 | + /** |
|
| 1260 | + * Retrieves the size of the image. |
|
| 1261 | + * |
|
| 1262 | + * @return ImageHelper_Size |
|
| 1263 | + * @throws ImageHelper_Exception |
|
| 1264 | + * @see ImageHelper::ERROR_CANNOT_GET_IMAGE_SIZE |
|
| 1265 | + */ |
|
| 1266 | + public function getSize() : ImageHelper_Size |
|
| 1267 | 1267 | { |
| 1268 | - return self::getImageSize($this->newImage); |
|
| 1268 | + return self::getImageSize($this->newImage); |
|
| 1269 | 1269 | } |
| 1270 | 1270 | |
| 1271 | 1271 | protected $TTFFile; |
| 1272 | 1272 | |
| 1273 | - /** |
|
| 1274 | - * Sets the TTF font file to use for text operations. |
|
| 1275 | - * |
|
| 1276 | - * @param string $filePath |
|
| 1277 | - * @return ImageHelper |
|
| 1278 | - */ |
|
| 1273 | + /** |
|
| 1274 | + * Sets the TTF font file to use for text operations. |
|
| 1275 | + * |
|
| 1276 | + * @param string $filePath |
|
| 1277 | + * @return ImageHelper |
|
| 1278 | + */ |
|
| 1279 | 1279 | public function setFontTTF($filePath) |
| 1280 | 1280 | { |
| 1281 | 1281 | $this->TTFFile = $filePath; |
@@ -1347,63 +1347,63 @@ discard block |
||
| 1347 | 1347 | return; |
| 1348 | 1348 | } |
| 1349 | 1349 | |
| 1350 | - throw new ImageHelper_Exception( |
|
| 1350 | + throw new ImageHelper_Exception( |
|
| 1351 | 1351 | 'No true type font specified', |
| 1352 | 1352 | 'This functionality requires a TTF font file to be specified with the [setFontTTF] method.', |
| 1353 | 1353 | self::ERROR_NO_TRUE_TYPE_FONT_SET |
| 1354 | 1354 | ); |
| 1355 | 1355 | } |
| 1356 | 1356 | |
| 1357 | - /** |
|
| 1358 | - * Retrieves the size of an image file on disk, or |
|
| 1359 | - * an existing image resource. |
|
| 1360 | - * |
|
| 1361 | - * <pre> |
|
| 1362 | - * array( |
|
| 1363 | - * 0: (width), |
|
| 1364 | - * 1: (height), |
|
| 1365 | - * "channels": the amount of channels |
|
| 1366 | - * "bits": bits per channel |
|
| 1357 | + /** |
|
| 1358 | + * Retrieves the size of an image file on disk, or |
|
| 1359 | + * an existing image resource. |
|
| 1360 | + * |
|
| 1361 | + * <pre> |
|
| 1362 | + * array( |
|
| 1363 | + * 0: (width), |
|
| 1364 | + * 1: (height), |
|
| 1365 | + * "channels": the amount of channels |
|
| 1366 | + * "bits": bits per channel |
|
| 1367 | 1367 | * ) |
| 1368 | - * </pre> |
|
| 1369 | - * |
|
| 1370 | - * @param string|resource $pathOrResource |
|
| 1371 | - * @return ImageHelper_Size Size object, can also be accessed like the traditional array from getimagesize |
|
| 1372 | - * @see ImageHelper_Size |
|
| 1373 | - * @throws ImageHelper_Exception |
|
| 1374 | - * @see ImageHelper::ERROR_CANNOT_GET_IMAGE_SIZE |
|
| 1375 | - * @see ImageHelper::ERROR_CANNOT_READ_SVG_IMAGE |
|
| 1376 | - * @see ImageHelper::ERROR_SVG_SOURCE_VIEWBOX_MISSING |
|
| 1377 | - * @see ImageHelper::ERROR_SVG_VIEWBOX_INVALID |
|
| 1378 | - */ |
|
| 1379 | - public static function getImageSize($pathOrResource) : ImageHelper_Size |
|
| 1380 | - { |
|
| 1381 | - if(is_resource($pathOrResource)) |
|
| 1382 | - { |
|
| 1383 | - return new ImageHelper_Size(array( |
|
| 1384 | - 'width' => imagesx($pathOrResource), |
|
| 1385 | - 'height' => imagesy($pathOrResource), |
|
| 1386 | - 'channels' => 1, |
|
| 1387 | - 'bits' => 8 |
|
| 1388 | - )); |
|
| 1389 | - } |
|
| 1368 | + * </pre> |
|
| 1369 | + * |
|
| 1370 | + * @param string|resource $pathOrResource |
|
| 1371 | + * @return ImageHelper_Size Size object, can also be accessed like the traditional array from getimagesize |
|
| 1372 | + * @see ImageHelper_Size |
|
| 1373 | + * @throws ImageHelper_Exception |
|
| 1374 | + * @see ImageHelper::ERROR_CANNOT_GET_IMAGE_SIZE |
|
| 1375 | + * @see ImageHelper::ERROR_CANNOT_READ_SVG_IMAGE |
|
| 1376 | + * @see ImageHelper::ERROR_SVG_SOURCE_VIEWBOX_MISSING |
|
| 1377 | + * @see ImageHelper::ERROR_SVG_VIEWBOX_INVALID |
|
| 1378 | + */ |
|
| 1379 | + public static function getImageSize($pathOrResource) : ImageHelper_Size |
|
| 1380 | + { |
|
| 1381 | + if(is_resource($pathOrResource)) |
|
| 1382 | + { |
|
| 1383 | + return new ImageHelper_Size(array( |
|
| 1384 | + 'width' => imagesx($pathOrResource), |
|
| 1385 | + 'height' => imagesy($pathOrResource), |
|
| 1386 | + 'channels' => 1, |
|
| 1387 | + 'bits' => 8 |
|
| 1388 | + )); |
|
| 1389 | + } |
|
| 1390 | 1390 | |
| 1391 | - $type = self::getFileImageType($pathOrResource); |
|
| 1391 | + $type = self::getFileImageType($pathOrResource); |
|
| 1392 | 1392 | |
| 1393 | - $info = false; |
|
| 1394 | - $method = 'getImageSize_'.$type; |
|
| 1395 | - if(method_exists(__CLASS__, $method)) |
|
| 1396 | - { |
|
| 1397 | - $info = call_user_func(array(__CLASS__, $method), $pathOrResource); |
|
| 1398 | - } |
|
| 1399 | - else |
|
| 1400 | - { |
|
| 1401 | - $info = getimagesize($pathOrResource); |
|
| 1402 | - } |
|
| 1393 | + $info = false; |
|
| 1394 | + $method = 'getImageSize_'.$type; |
|
| 1395 | + if(method_exists(__CLASS__, $method)) |
|
| 1396 | + { |
|
| 1397 | + $info = call_user_func(array(__CLASS__, $method), $pathOrResource); |
|
| 1398 | + } |
|
| 1399 | + else |
|
| 1400 | + { |
|
| 1401 | + $info = getimagesize($pathOrResource); |
|
| 1402 | + } |
|
| 1403 | 1403 | |
| 1404 | - if($info !== false) { |
|
| 1405 | - return new ImageHelper_Size($info); |
|
| 1406 | - } |
|
| 1404 | + if($info !== false) { |
|
| 1405 | + return new ImageHelper_Size($info); |
|
| 1406 | + } |
|
| 1407 | 1407 | |
| 1408 | 1408 | throw new ImageHelper_Exception( |
| 1409 | 1409 | 'Error opening image file', |
@@ -1413,98 +1413,98 @@ discard block |
||
| 1413 | 1413 | ), |
| 1414 | 1414 | self::ERROR_CANNOT_GET_IMAGE_SIZE |
| 1415 | 1415 | ); |
| 1416 | - } |
|
| 1416 | + } |
|
| 1417 | 1417 | |
| 1418 | - /** |
|
| 1419 | - * @param string $imagePath |
|
| 1420 | - * @throws ImageHelper_Exception |
|
| 1421 | - * @return array |
|
| 1422 | - * |
|
| 1423 | - * @todo This should return a ImageHelper_Size instance. |
|
| 1424 | - */ |
|
| 1425 | - protected static function getImageSize_svg(string $imagePath) : array |
|
| 1426 | - { |
|
| 1427 | - $xml = XMLHelper::createSimplexml(); |
|
| 1428 | - $xml->loadFile($imagePath); |
|
| 1418 | + /** |
|
| 1419 | + * @param string $imagePath |
|
| 1420 | + * @throws ImageHelper_Exception |
|
| 1421 | + * @return array |
|
| 1422 | + * |
|
| 1423 | + * @todo This should return a ImageHelper_Size instance. |
|
| 1424 | + */ |
|
| 1425 | + protected static function getImageSize_svg(string $imagePath) : array |
|
| 1426 | + { |
|
| 1427 | + $xml = XMLHelper::createSimplexml(); |
|
| 1428 | + $xml->loadFile($imagePath); |
|
| 1429 | 1429 | |
| 1430 | - if($xml->hasErrors()) { |
|
| 1431 | - throw new ImageHelper_Exception( |
|
| 1432 | - 'Error opening SVG image', |
|
| 1433 | - sprintf( |
|
| 1434 | - 'The XML content of the image [%s] could not be parsed.', |
|
| 1435 | - $imagePath |
|
| 1430 | + if($xml->hasErrors()) { |
|
| 1431 | + throw new ImageHelper_Exception( |
|
| 1432 | + 'Error opening SVG image', |
|
| 1433 | + sprintf( |
|
| 1434 | + 'The XML content of the image [%s] could not be parsed.', |
|
| 1435 | + $imagePath |
|
| 1436 | 1436 | ), |
| 1437 | - self::ERROR_CANNOT_READ_SVG_IMAGE |
|
| 1437 | + self::ERROR_CANNOT_READ_SVG_IMAGE |
|
| 1438 | 1438 | ); |
| 1439 | - } |
|
| 1439 | + } |
|
| 1440 | 1440 | |
| 1441 | - $data = $xml->toArray(); |
|
| 1442 | - $xml->dispose(); |
|
| 1443 | - unset($xml); |
|
| 1441 | + $data = $xml->toArray(); |
|
| 1442 | + $xml->dispose(); |
|
| 1443 | + unset($xml); |
|
| 1444 | 1444 | |
| 1445 | - if(!isset($data['@attributes']) || !isset($data['@attributes']['viewBox'])) { |
|
| 1446 | - throw new ImageHelper_Exception( |
|
| 1447 | - 'SVG Image is corrupted', |
|
| 1448 | - sprintf( |
|
| 1449 | - 'The [viewBox] attribute is missing in the XML of the image at path [%s].', |
|
| 1450 | - $imagePath |
|
| 1445 | + if(!isset($data['@attributes']) || !isset($data['@attributes']['viewBox'])) { |
|
| 1446 | + throw new ImageHelper_Exception( |
|
| 1447 | + 'SVG Image is corrupted', |
|
| 1448 | + sprintf( |
|
| 1449 | + 'The [viewBox] attribute is missing in the XML of the image at path [%s].', |
|
| 1450 | + $imagePath |
|
| 1451 | 1451 | ), |
| 1452 | - self::ERROR_SVG_SOURCE_VIEWBOX_MISSING |
|
| 1452 | + self::ERROR_SVG_SOURCE_VIEWBOX_MISSING |
|
| 1453 | 1453 | ); |
| 1454 | - } |
|
| 1454 | + } |
|
| 1455 | 1455 | |
| 1456 | - $svgWidth = parseNumber($data['@attributes']['width'])->getNumber(); |
|
| 1457 | - $svgHeight = parseNumber($data['@attributes']['height'])->getNumber(); |
|
| 1456 | + $svgWidth = parseNumber($data['@attributes']['width'])->getNumber(); |
|
| 1457 | + $svgHeight = parseNumber($data['@attributes']['height'])->getNumber(); |
|
| 1458 | 1458 | |
| 1459 | - $viewBox = str_replace(' ', ',', $data['@attributes']['viewBox']); |
|
| 1460 | - $size = explode(',', $viewBox); |
|
| 1459 | + $viewBox = str_replace(' ', ',', $data['@attributes']['viewBox']); |
|
| 1460 | + $size = explode(',', $viewBox); |
|
| 1461 | 1461 | |
| 1462 | - if(count($size) != 4) |
|
| 1463 | - { |
|
| 1464 | - throw new ImageHelper_Exception( |
|
| 1465 | - 'SVG image has an invalid viewBox attribute', |
|
| 1466 | - sprintf( |
|
| 1467 | - 'The [viewBox] attribute does not have an expected value: [%s] in path [%s].', |
|
| 1468 | - $viewBox, |
|
| 1469 | - $imagePath |
|
| 1462 | + if(count($size) != 4) |
|
| 1463 | + { |
|
| 1464 | + throw new ImageHelper_Exception( |
|
| 1465 | + 'SVG image has an invalid viewBox attribute', |
|
| 1466 | + sprintf( |
|
| 1467 | + 'The [viewBox] attribute does not have an expected value: [%s] in path [%s].', |
|
| 1468 | + $viewBox, |
|
| 1469 | + $imagePath |
|
| 1470 | 1470 | ), |
| 1471 | - self::ERROR_SVG_VIEWBOX_INVALID |
|
| 1471 | + self::ERROR_SVG_VIEWBOX_INVALID |
|
| 1472 | 1472 | ); |
| 1473 | - } |
|
| 1473 | + } |
|
| 1474 | 1474 | |
| 1475 | - $boxWidth = $size[2]; |
|
| 1476 | - $boxHeight = $size[3]; |
|
| 1475 | + $boxWidth = $size[2]; |
|
| 1476 | + $boxHeight = $size[3]; |
|
| 1477 | 1477 | |
| 1478 | - // calculate the x and y units of the document: |
|
| 1479 | - // @see http://tutorials.jenkov.com/svg/svg-viewport-view-box.html#viewbox |
|
| 1480 | - // |
|
| 1481 | - // The viewbox combined with the width and heigt of the svg |
|
| 1482 | - // allow calculating how many pixels are in one unit of the |
|
| 1483 | - // width and height of the document. |
|
| 1478 | + // calculate the x and y units of the document: |
|
| 1479 | + // @see http://tutorials.jenkov.com/svg/svg-viewport-view-box.html#viewbox |
|
| 1480 | + // |
|
| 1481 | + // The viewbox combined with the width and heigt of the svg |
|
| 1482 | + // allow calculating how many pixels are in one unit of the |
|
| 1483 | + // width and height of the document. |
|
| 1484 | 1484 | // |
| 1485 | - $xUnits = $svgWidth / $boxWidth; |
|
| 1486 | - $yUnits = $svgHeight / $boxHeight; |
|
| 1485 | + $xUnits = $svgWidth / $boxWidth; |
|
| 1486 | + $yUnits = $svgHeight / $boxHeight; |
|
| 1487 | 1487 | |
| 1488 | - $pxWidth = $xUnits * $svgWidth; |
|
| 1489 | - $pxHeight = $yUnits * $svgHeight; |
|
| 1488 | + $pxWidth = $xUnits * $svgWidth; |
|
| 1489 | + $pxHeight = $yUnits * $svgHeight; |
|
| 1490 | 1490 | |
| 1491 | - return array( |
|
| 1492 | - $pxWidth, |
|
| 1493 | - $pxHeight, |
|
| 1494 | - 'bits' => 8 |
|
| 1495 | - ); |
|
| 1496 | - } |
|
| 1491 | + return array( |
|
| 1492 | + $pxWidth, |
|
| 1493 | + $pxHeight, |
|
| 1494 | + 'bits' => 8 |
|
| 1495 | + ); |
|
| 1496 | + } |
|
| 1497 | 1497 | |
| 1498 | - /** |
|
| 1499 | - * Crops the image to the specified width and height, optionally |
|
| 1500 | - * specifying the origin position to crop from. |
|
| 1501 | - * |
|
| 1502 | - * @param integer $width |
|
| 1503 | - * @param integer $height |
|
| 1504 | - * @param integer $x |
|
| 1505 | - * @param integer $y |
|
| 1506 | - * @return ImageHelper |
|
| 1507 | - */ |
|
| 1498 | + /** |
|
| 1499 | + * Crops the image to the specified width and height, optionally |
|
| 1500 | + * specifying the origin position to crop from. |
|
| 1501 | + * |
|
| 1502 | + * @param integer $width |
|
| 1503 | + * @param integer $height |
|
| 1504 | + * @param integer $x |
|
| 1505 | + * @param integer $y |
|
| 1506 | + * @return ImageHelper |
|
| 1507 | + */ |
|
| 1508 | 1508 | public function crop(int $width, int $height, int $x=0, int $y=0) : ImageHelper |
| 1509 | 1509 | { |
| 1510 | 1510 | $new = $this->createNewImage($width, $height); |
@@ -1526,22 +1526,22 @@ discard block |
||
| 1526 | 1526 | return $this->newHeight; |
| 1527 | 1527 | } |
| 1528 | 1528 | |
| 1529 | - /** |
|
| 1530 | - * Calculates the average color value used in |
|
| 1531 | - * the image. Returns an associative array |
|
| 1532 | - * with the red, green, blue and alpha components, |
|
| 1533 | - * or a HEX color string depending on the selected |
|
| 1534 | - * format. |
|
| 1535 | - * |
|
| 1536 | - * NOTE: Use the calcAverageColorXXX methods for |
|
| 1537 | - * strict return types. |
|
| 1538 | - * |
|
| 1539 | - * @param int $format The format in which to return the color value. |
|
| 1540 | - * @return array|string |
|
| 1541 | - * |
|
| 1542 | - * @see ImageHelper::calcAverageColorRGB() |
|
| 1543 | - * @see ImageHelper::calcAverageColorHEX() |
|
| 1544 | - */ |
|
| 1529 | + /** |
|
| 1530 | + * Calculates the average color value used in |
|
| 1531 | + * the image. Returns an associative array |
|
| 1532 | + * with the red, green, blue and alpha components, |
|
| 1533 | + * or a HEX color string depending on the selected |
|
| 1534 | + * format. |
|
| 1535 | + * |
|
| 1536 | + * NOTE: Use the calcAverageColorXXX methods for |
|
| 1537 | + * strict return types. |
|
| 1538 | + * |
|
| 1539 | + * @param int $format The format in which to return the color value. |
|
| 1540 | + * @return array|string |
|
| 1541 | + * |
|
| 1542 | + * @see ImageHelper::calcAverageColorRGB() |
|
| 1543 | + * @see ImageHelper::calcAverageColorHEX() |
|
| 1544 | + */ |
|
| 1545 | 1545 | public function calcAverageColor(int $format=self::COLORFORMAT_RGB) |
| 1546 | 1546 | { |
| 1547 | 1547 | $image = $this->duplicate(); |
@@ -1550,35 +1550,35 @@ discard block |
||
| 1550 | 1550 | return $image->getColorAt(0, 0, $format); |
| 1551 | 1551 | } |
| 1552 | 1552 | |
| 1553 | - /** |
|
| 1554 | - * Calculates the image's average color value, and |
|
| 1555 | - * returns an associative array with red, green, |
|
| 1556 | - * blue and alpha keys. |
|
| 1557 | - * |
|
| 1558 | - * @throws ImageHelper_Exception |
|
| 1559 | - * @return array |
|
| 1560 | - */ |
|
| 1553 | + /** |
|
| 1554 | + * Calculates the image's average color value, and |
|
| 1555 | + * returns an associative array with red, green, |
|
| 1556 | + * blue and alpha keys. |
|
| 1557 | + * |
|
| 1558 | + * @throws ImageHelper_Exception |
|
| 1559 | + * @return array |
|
| 1560 | + */ |
|
| 1561 | 1561 | public function calcAverageColorRGB() : array |
| 1562 | 1562 | { |
| 1563 | - $result = $this->calcAverageColor(self::COLORFORMAT_RGB); |
|
| 1564 | - if(is_array($result)) { |
|
| 1565 | - return $result; |
|
| 1566 | - } |
|
| 1563 | + $result = $this->calcAverageColor(self::COLORFORMAT_RGB); |
|
| 1564 | + if(is_array($result)) { |
|
| 1565 | + return $result; |
|
| 1566 | + } |
|
| 1567 | 1567 | |
| 1568 | - throw new ImageHelper_Exception( |
|
| 1569 | - 'Unexpected color value', |
|
| 1570 | - sprintf('Expected an array, got [%s].', gettype($result)), |
|
| 1571 | - self::ERROR_UNEXPECTED_COLOR_VALUE |
|
| 1572 | - ); |
|
| 1568 | + throw new ImageHelper_Exception( |
|
| 1569 | + 'Unexpected color value', |
|
| 1570 | + sprintf('Expected an array, got [%s].', gettype($result)), |
|
| 1571 | + self::ERROR_UNEXPECTED_COLOR_VALUE |
|
| 1572 | + ); |
|
| 1573 | 1573 | } |
| 1574 | 1574 | |
| 1575 | - /** |
|
| 1576 | - * Calculates the image's average color value, and |
|
| 1577 | - * returns a hex color string (without the #). |
|
| 1578 | - * |
|
| 1579 | - * @throws ImageHelper_Exception |
|
| 1580 | - * @return string |
|
| 1581 | - */ |
|
| 1575 | + /** |
|
| 1576 | + * Calculates the image's average color value, and |
|
| 1577 | + * returns a hex color string (without the #). |
|
| 1578 | + * |
|
| 1579 | + * @throws ImageHelper_Exception |
|
| 1580 | + * @return string |
|
| 1581 | + */ |
|
| 1582 | 1582 | public function calcAverageColorHex() : string |
| 1583 | 1583 | { |
| 1584 | 1584 | $result = $this->calcAverageColor(self::COLORFORMAT_HEX); |
@@ -1645,12 +1645,12 @@ discard block |
||
| 1645 | 1645 | return $rgb; |
| 1646 | 1646 | } |
| 1647 | 1647 | |
| 1648 | - /** |
|
| 1649 | - * Converts an RGB value to its luminance equivalent. |
|
| 1650 | - * |
|
| 1651 | - * @param array<string,int> $rgb |
|
| 1652 | - * @return integer Integer, from 0 to 255 (0=black, 255=white) |
|
| 1653 | - */ |
|
| 1648 | + /** |
|
| 1649 | + * Converts an RGB value to its luminance equivalent. |
|
| 1650 | + * |
|
| 1651 | + * @param array<string,int> $rgb |
|
| 1652 | + * @return integer Integer, from 0 to 255 (0=black, 255=white) |
|
| 1653 | + */ |
|
| 1654 | 1654 | public static function rgb2luma(array $rgb) : int |
| 1655 | 1655 | { |
| 1656 | 1656 | return (int)floor((($rgb['red']*2)+$rgb['blue']+($rgb['green']*3))/6); |
@@ -1670,15 +1670,15 @@ discard block |
||
| 1670 | 1670 | return $luma * 100 / 255; |
| 1671 | 1671 | } |
| 1672 | 1672 | |
| 1673 | - /** |
|
| 1674 | - * Retrieves an md5 hash of the source image file. |
|
| 1675 | - * |
|
| 1676 | - * NOTE: Only works when the helper has been created |
|
| 1677 | - * from a file. Otherwise, an exception is thrown. |
|
| 1678 | - * |
|
| 1679 | - * @return string |
|
| 1680 | - * @throws ImageHelper_Exception|OutputBuffering_Exception |
|
| 1681 | - */ |
|
| 1673 | + /** |
|
| 1674 | + * Retrieves an md5 hash of the source image file. |
|
| 1675 | + * |
|
| 1676 | + * NOTE: Only works when the helper has been created |
|
| 1677 | + * from a file. Otherwise, an exception is thrown. |
|
| 1678 | + * |
|
| 1679 | + * @return string |
|
| 1680 | + * @throws ImageHelper_Exception|OutputBuffering_Exception |
|
| 1681 | + */ |
|
| 1682 | 1682 | public function getHash() : string |
| 1683 | 1683 | { |
| 1684 | 1684 | if($this->newImage === null) |
@@ -60,13 +60,13 @@ discard block |
||
| 60 | 60 | return ConvertHelper_String::tabs2spaces($string, $tabSize); |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | - /** |
|
| 64 | - * Converts spaces to tabs in the specified string. |
|
| 65 | - * |
|
| 66 | - * @param string $string |
|
| 67 | - * @param int $tabSize The amount of spaces per tab in the source string. |
|
| 68 | - * @return string |
|
| 69 | - */ |
|
| 63 | + /** |
|
| 64 | + * Converts spaces to tabs in the specified string. |
|
| 65 | + * |
|
| 66 | + * @param string $string |
|
| 67 | + * @param int $tabSize The amount of spaces per tab in the source string. |
|
| 68 | + * @return string |
|
| 69 | + */ |
|
| 70 | 70 | public static function spaces2tabs(string $string, int $tabSize=4) : string |
| 71 | 71 | { |
| 72 | 72 | return ConvertHelper_String::spaces2tabs($string, $tabSize); |
@@ -84,14 +84,14 @@ discard block |
||
| 84 | 84 | return ConvertHelper_String::hidden2visible($string); |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - /** |
|
| 88 | - * Converts the specified amount of seconds into |
|
| 89 | - * a human-readable string split in months, weeks, |
|
| 90 | - * days, hours, minutes and seconds. |
|
| 91 | - * |
|
| 92 | - * @param float $seconds |
|
| 93 | - * @return string |
|
| 94 | - */ |
|
| 87 | + /** |
|
| 88 | + * Converts the specified amount of seconds into |
|
| 89 | + * a human-readable string split in months, weeks, |
|
| 90 | + * days, hours, minutes and seconds. |
|
| 91 | + * |
|
| 92 | + * @param float $seconds |
|
| 93 | + * @return string |
|
| 94 | + */ |
|
| 95 | 95 | public static function time2string($seconds) : string |
| 96 | 96 | { |
| 97 | 97 | $converter = new ConvertHelper_TimeConverter($seconds); |
@@ -115,85 +115,85 @@ discard block |
||
| 115 | 115 | */ |
| 116 | 116 | public static function duration2string($datefrom, $dateto = -1) : string |
| 117 | 117 | { |
| 118 | - return ConvertHelper_DurationConverter::toString($datefrom, $dateto); |
|
| 118 | + return ConvertHelper_DurationConverter::toString($datefrom, $dateto); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - /** |
|
| 122 | - * Adds HTML syntax highlighting to the specified SQL string. |
|
| 123 | - * |
|
| 124 | - * @param string $sql |
|
| 125 | - * @return string |
|
| 126 | - * @deprecated Use the Highlighter class directly instead. |
|
| 127 | - * @see Highlighter::sql() |
|
| 128 | - */ |
|
| 121 | + /** |
|
| 122 | + * Adds HTML syntax highlighting to the specified SQL string. |
|
| 123 | + * |
|
| 124 | + * @param string $sql |
|
| 125 | + * @return string |
|
| 126 | + * @deprecated Use the Highlighter class directly instead. |
|
| 127 | + * @see Highlighter::sql() |
|
| 128 | + */ |
|
| 129 | 129 | public static function highlight_sql(string $sql) : string |
| 130 | 130 | { |
| 131 | 131 | return Highlighter::sql($sql); |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - /** |
|
| 135 | - * Adds HTML syntax highlighting to the specified XML code. |
|
| 136 | - * |
|
| 137 | - * @param string $xml The XML to highlight. |
|
| 138 | - * @param bool $formatSource Whether to format the source with indentation to make it readable. |
|
| 139 | - * @return string |
|
| 140 | - * @deprecated Use the Highlighter class directly instead. |
|
| 141 | - * @see Highlighter::xml() |
|
| 142 | - */ |
|
| 134 | + /** |
|
| 135 | + * Adds HTML syntax highlighting to the specified XML code. |
|
| 136 | + * |
|
| 137 | + * @param string $xml The XML to highlight. |
|
| 138 | + * @param bool $formatSource Whether to format the source with indentation to make it readable. |
|
| 139 | + * @return string |
|
| 140 | + * @deprecated Use the Highlighter class directly instead. |
|
| 141 | + * @see Highlighter::xml() |
|
| 142 | + */ |
|
| 143 | 143 | public static function highlight_xml(string $xml, bool $formatSource=false) : string |
| 144 | 144 | { |
| 145 | 145 | return Highlighter::xml($xml, $formatSource); |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - /** |
|
| 149 | - * @param string $phpCode |
|
| 150 | - * @return string |
|
| 151 | - * @deprecated Use the Highlighter class directly instead. |
|
| 152 | - * @see Highlighter::php() |
|
| 153 | - */ |
|
| 148 | + /** |
|
| 149 | + * @param string $phpCode |
|
| 150 | + * @return string |
|
| 151 | + * @deprecated Use the Highlighter class directly instead. |
|
| 152 | + * @see Highlighter::php() |
|
| 153 | + */ |
|
| 154 | 154 | public static function highlight_php(string $phpCode) : string |
| 155 | 155 | { |
| 156 | 156 | return Highlighter::php($phpCode); |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - /** |
|
| 160 | - * Converts a number of bytes to a human-readable form, |
|
| 161 | - * e.g. xx Kb / xx Mb / xx Gb |
|
| 162 | - * |
|
| 163 | - * @param int $bytes The amount of bytes to convert. |
|
| 164 | - * @param int $precision The amount of decimals |
|
| 165 | - * @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). |
|
| 166 | - * @return string |
|
| 167 | - * |
|
| 168 | - * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
| 169 | - */ |
|
| 159 | + /** |
|
| 160 | + * Converts a number of bytes to a human-readable form, |
|
| 161 | + * e.g. xx Kb / xx Mb / xx Gb |
|
| 162 | + * |
|
| 163 | + * @param int $bytes The amount of bytes to convert. |
|
| 164 | + * @param int $precision The amount of decimals |
|
| 165 | + * @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). |
|
| 166 | + * @return string |
|
| 167 | + * |
|
| 168 | + * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
| 169 | + */ |
|
| 170 | 170 | public static function bytes2readable(int $bytes, int $precision = 1, int $base = ConvertHelper_StorageSizeEnum::BASE_10) : string |
| 171 | 171 | { |
| 172 | 172 | return self::parseBytes($bytes)->toString($precision, $base); |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - /** |
|
| 176 | - * Parses a number of bytes, and creates a converter instance which |
|
| 177 | - * allows doing common operations with it. |
|
| 178 | - * |
|
| 179 | - * @param int $bytes |
|
| 180 | - * @return ConvertHelper_ByteConverter |
|
| 181 | - */ |
|
| 175 | + /** |
|
| 176 | + * Parses a number of bytes, and creates a converter instance which |
|
| 177 | + * allows doing common operations with it. |
|
| 178 | + * |
|
| 179 | + * @param int $bytes |
|
| 180 | + * @return ConvertHelper_ByteConverter |
|
| 181 | + */ |
|
| 182 | 182 | public static function parseBytes(int $bytes) : ConvertHelper_ByteConverter |
| 183 | 183 | { |
| 184 | 184 | return new ConvertHelper_ByteConverter($bytes); |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - /** |
|
| 188 | - * Cuts a text to the specified length if it is longer than the |
|
| 189 | - * target length. Appends a text to signify it has been cut at |
|
| 190 | - * the end of the string. |
|
| 191 | - * |
|
| 192 | - * @param string $text |
|
| 193 | - * @param int $targetLength |
|
| 194 | - * @param string $append |
|
| 195 | - * @return string |
|
| 196 | - */ |
|
| 187 | + /** |
|
| 188 | + * Cuts a text to the specified length if it is longer than the |
|
| 189 | + * target length. Appends a text to signify it has been cut at |
|
| 190 | + * the end of the string. |
|
| 191 | + * |
|
| 192 | + * @param string $text |
|
| 193 | + * @param int $targetLength |
|
| 194 | + * @param string $append |
|
| 195 | + * @return string |
|
| 196 | + */ |
|
| 197 | 197 | public static function text_cut(string $text, int $targetLength, string $append = '...') : string |
| 198 | 198 | { |
| 199 | 199 | return ConvertHelper_String::cutText($text, $targetLength, $append); |
@@ -217,14 +217,14 @@ discard block |
||
| 217 | 217 | return $info->toString(); |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | - /** |
|
| 221 | - * Pretty `print_r`. |
|
| 222 | - * |
|
| 223 | - * @param mixed $var The variable to dump. |
|
| 224 | - * @param bool $return Whether to return the dumped code. |
|
| 225 | - * @param bool $html Whether to style the dump as HTML. |
|
| 226 | - * @return string |
|
| 227 | - */ |
|
| 220 | + /** |
|
| 221 | + * Pretty `print_r`. |
|
| 222 | + * |
|
| 223 | + * @param mixed $var The variable to dump. |
|
| 224 | + * @param bool $return Whether to return the dumped code. |
|
| 225 | + * @param bool $html Whether to style the dump as HTML. |
|
| 226 | + * @return string |
|
| 227 | + */ |
|
| 228 | 228 | public static function print_r($var, bool $return=false, bool $html=true) : string |
| 229 | 229 | { |
| 230 | 230 | $result = parseVariable($var)->enableType()->toString(); |
@@ -245,29 +245,29 @@ discard block |
||
| 245 | 245 | return $result; |
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - /** |
|
| 249 | - * Converts a string, number or boolean value to a boolean value. |
|
| 250 | - * |
|
| 251 | - * @param mixed $string |
|
| 252 | - * @throws ConvertHelper_Exception |
|
| 253 | - * @return bool |
|
| 254 | - * |
|
| 255 | - * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING |
|
| 256 | - */ |
|
| 248 | + /** |
|
| 249 | + * Converts a string, number or boolean value to a boolean value. |
|
| 250 | + * |
|
| 251 | + * @param mixed $string |
|
| 252 | + * @throws ConvertHelper_Exception |
|
| 253 | + * @return bool |
|
| 254 | + * |
|
| 255 | + * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING |
|
| 256 | + */ |
|
| 257 | 257 | public static function string2bool($string) : bool |
| 258 | 258 | { |
| 259 | 259 | return ConvertHelper_Bool::fromString($string); |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - /** |
|
| 263 | - * Whether the specified string is a boolean string or boolean value. |
|
| 264 | - * Alias for {@link ConvertHelper::isBoolean()}. |
|
| 265 | - * |
|
| 266 | - * @param mixed $string |
|
| 267 | - * @return bool |
|
| 268 | - * @deprecated |
|
| 269 | - * @see ConvertHelper::isBoolean() |
|
| 270 | - */ |
|
| 262 | + /** |
|
| 263 | + * Whether the specified string is a boolean string or boolean value. |
|
| 264 | + * Alias for {@link ConvertHelper::isBoolean()}. |
|
| 265 | + * |
|
| 266 | + * @param mixed $string |
|
| 267 | + * @return bool |
|
| 268 | + * @deprecated |
|
| 269 | + * @see ConvertHelper::isBoolean() |
|
| 270 | + */ |
|
| 271 | 271 | public static function isBooleanString($string) : bool |
| 272 | 272 | { |
| 273 | 273 | return self::isBoolean($string); |
@@ -337,36 +337,36 @@ discard block |
||
| 337 | 337 | return ConvertHelper_String::transliterate($string, $spaceChar, $lowercase); |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | - /** |
|
| 341 | - * Retrieves the HEX character codes for all control |
|
| 342 | - * characters that the {@link stripControlCharacters()} |
|
| 343 | - * method will remove. |
|
| 344 | - * |
|
| 345 | - * @return string[] |
|
| 346 | - */ |
|
| 340 | + /** |
|
| 341 | + * Retrieves the HEX character codes for all control |
|
| 342 | + * characters that the {@link stripControlCharacters()} |
|
| 343 | + * method will remove. |
|
| 344 | + * |
|
| 345 | + * @return string[] |
|
| 346 | + */ |
|
| 347 | 347 | public static function getControlCharactersAsHex() : array |
| 348 | 348 | { |
| 349 | 349 | return self::createControlCharacters()->getCharsAsHex(); |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - /** |
|
| 353 | - * Retrieves an array of all control characters that |
|
| 354 | - * the {@link stripControlCharacters()} method will |
|
| 355 | - * remove, as the actual UTF-8 characters. |
|
| 356 | - * |
|
| 357 | - * @return string[] |
|
| 358 | - */ |
|
| 352 | + /** |
|
| 353 | + * Retrieves an array of all control characters that |
|
| 354 | + * the {@link stripControlCharacters()} method will |
|
| 355 | + * remove, as the actual UTF-8 characters. |
|
| 356 | + * |
|
| 357 | + * @return string[] |
|
| 358 | + */ |
|
| 359 | 359 | public static function getControlCharactersAsUTF8() : array |
| 360 | 360 | { |
| 361 | 361 | return self::createControlCharacters()->getCharsAsUTF8(); |
| 362 | 362 | } |
| 363 | 363 | |
| 364 | - /** |
|
| 365 | - * Retrieves all control characters as JSON encoded |
|
| 366 | - * characters, e.g. "\u200b". |
|
| 367 | - * |
|
| 368 | - * @return string[] |
|
| 369 | - */ |
|
| 364 | + /** |
|
| 365 | + * Retrieves all control characters as JSON encoded |
|
| 366 | + * characters, e.g. "\u200b". |
|
| 367 | + * |
|
| 368 | + * @return string[] |
|
| 369 | + */ |
|
| 370 | 370 | public static function getControlCharactersAsJSON() : array |
| 371 | 371 | { |
| 372 | 372 | return self::createControlCharacters()->getCharsAsJSON(); |
@@ -387,31 +387,31 @@ discard block |
||
| 387 | 387 | return self::createControlCharacters()->stripControlCharacters($string); |
| 388 | 388 | } |
| 389 | 389 | |
| 390 | - /** |
|
| 391 | - * Creates the control characters class, used to |
|
| 392 | - * work with control characters in strings. |
|
| 393 | - * |
|
| 394 | - * @return ConvertHelper_ControlCharacters |
|
| 395 | - */ |
|
| 390 | + /** |
|
| 391 | + * Creates the control characters class, used to |
|
| 392 | + * work with control characters in strings. |
|
| 393 | + * |
|
| 394 | + * @return ConvertHelper_ControlCharacters |
|
| 395 | + */ |
|
| 396 | 396 | public static function createControlCharacters() : ConvertHelper_ControlCharacters |
| 397 | 397 | { |
| 398 | 398 | return new ConvertHelper_ControlCharacters(); |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | - /** |
|
| 402 | - * Converts a unicode character to the PHP notation. |
|
| 403 | - * |
|
| 404 | - * Example: |
|
| 405 | - * |
|
| 406 | - * <pre>unicodeChar2php('"\u0000"')</pre> |
|
| 407 | - * |
|
| 408 | - * Returns |
|
| 409 | - * |
|
| 410 | - * <pre>\x0</pre> |
|
| 411 | - * |
|
| 412 | - * @param string $unicodeChar |
|
| 413 | - * @return string |
|
| 414 | - */ |
|
| 401 | + /** |
|
| 402 | + * Converts a unicode character to the PHP notation. |
|
| 403 | + * |
|
| 404 | + * Example: |
|
| 405 | + * |
|
| 406 | + * <pre>unicodeChar2php('"\u0000"')</pre> |
|
| 407 | + * |
|
| 408 | + * Returns |
|
| 409 | + * |
|
| 410 | + * <pre>\x0</pre> |
|
| 411 | + * |
|
| 412 | + * @param string $unicodeChar |
|
| 413 | + * @return string |
|
| 414 | + */ |
|
| 415 | 415 | public static function unicodeChar2php(string $unicodeChar) : string |
| 416 | 416 | { |
| 417 | 417 | $unicodeChar = json_decode($unicodeChar); |
@@ -525,138 +525,138 @@ discard block |
||
| 525 | 525 | return ConvertHelper_Bool::toStringStrict($boolean, $yesNo); |
| 526 | 526 | } |
| 527 | 527 | |
| 528 | - /** |
|
| 529 | - * Converts an associative array with attribute name > value pairs |
|
| 530 | - * to an attribute string that can be used in an HTML tag. Empty |
|
| 531 | - * attribute values are ignored. |
|
| 532 | - * |
|
| 533 | - * Example: |
|
| 534 | - * |
|
| 535 | - * array2attributeString(array( |
|
| 536 | - * 'id' => 45, |
|
| 537 | - * 'href' => 'http://www.mistralys.com' |
|
| 538 | - * )); |
|
| 539 | - * |
|
| 540 | - * Result: |
|
| 541 | - * |
|
| 542 | - * id="45" href="http://www.mistralys.com" |
|
| 543 | - * |
|
| 544 | - * @param array<string,mixed> $array |
|
| 545 | - * @return string |
|
| 546 | - */ |
|
| 528 | + /** |
|
| 529 | + * Converts an associative array with attribute name > value pairs |
|
| 530 | + * to an attribute string that can be used in an HTML tag. Empty |
|
| 531 | + * attribute values are ignored. |
|
| 532 | + * |
|
| 533 | + * Example: |
|
| 534 | + * |
|
| 535 | + * array2attributeString(array( |
|
| 536 | + * 'id' => 45, |
|
| 537 | + * 'href' => 'http://www.mistralys.com' |
|
| 538 | + * )); |
|
| 539 | + * |
|
| 540 | + * Result: |
|
| 541 | + * |
|
| 542 | + * id="45" href="http://www.mistralys.com" |
|
| 543 | + * |
|
| 544 | + * @param array<string,mixed> $array |
|
| 545 | + * @return string |
|
| 546 | + */ |
|
| 547 | 547 | public static function array2attributeString(array $array) : string |
| 548 | 548 | { |
| 549 | 549 | return ConvertHelper_Array::toAttributeString($array); |
| 550 | 550 | } |
| 551 | 551 | |
| 552 | - /** |
|
| 553 | - * Converts a string, so it can safely be used in a javascript |
|
| 554 | - * statement in an HTML tag: uses single quotes around the string |
|
| 555 | - * and encodes all special characters as needed. |
|
| 556 | - * |
|
| 557 | - * @param string $string |
|
| 558 | - * @return string |
|
| 559 | - * @deprecated Use the JSHelper class instead. |
|
| 560 | - * @see JSHelper::phpVariable2AttributeJS() |
|
| 561 | - */ |
|
| 552 | + /** |
|
| 553 | + * Converts a string, so it can safely be used in a javascript |
|
| 554 | + * statement in an HTML tag: uses single quotes around the string |
|
| 555 | + * and encodes all special characters as needed. |
|
| 556 | + * |
|
| 557 | + * @param string $string |
|
| 558 | + * @return string |
|
| 559 | + * @deprecated Use the JSHelper class instead. |
|
| 560 | + * @see JSHelper::phpVariable2AttributeJS() |
|
| 561 | + */ |
|
| 562 | 562 | public static function string2attributeJS(string $string) : string |
| 563 | 563 | { |
| 564 | 564 | return JSHelper::phpVariable2AttributeJS($string); |
| 565 | 565 | } |
| 566 | 566 | |
| 567 | - /** |
|
| 568 | - * Checks if the specified string is a boolean value, which |
|
| 569 | - * includes string representations of boolean values, like |
|
| 570 | - * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
| 571 | - * or <code>false</code>. |
|
| 572 | - * |
|
| 573 | - * @param mixed $value |
|
| 574 | - * @return boolean |
|
| 575 | - */ |
|
| 567 | + /** |
|
| 568 | + * Checks if the specified string is a boolean value, which |
|
| 569 | + * includes string representations of boolean values, like |
|
| 570 | + * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
| 571 | + * or <code>false</code>. |
|
| 572 | + * |
|
| 573 | + * @param mixed $value |
|
| 574 | + * @return boolean |
|
| 575 | + */ |
|
| 576 | 576 | public static function isBoolean($value) : bool |
| 577 | 577 | { |
| 578 | 578 | return ConvertHelper_Bool::isBoolean($value); |
| 579 | 579 | } |
| 580 | 580 | |
| 581 | - /** |
|
| 582 | - * Converts an associative array to an HTML style attribute value string. |
|
| 583 | - * |
|
| 584 | - * @param array<string,mixed> $subject |
|
| 585 | - * @return string |
|
| 586 | - */ |
|
| 581 | + /** |
|
| 582 | + * Converts an associative array to an HTML style attribute value string. |
|
| 583 | + * |
|
| 584 | + * @param array<string,mixed> $subject |
|
| 585 | + * @return string |
|
| 586 | + */ |
|
| 587 | 587 | public static function array2styleString(array $subject) : string |
| 588 | 588 | { |
| 589 | 589 | return ConvertHelper_Array::toStyleString($subject); |
| 590 | 590 | } |
| 591 | 591 | |
| 592 | - /** |
|
| 593 | - * Converts a DateTime object to a timestamp, which |
|
| 594 | - * is PHP 5.2 compatible. |
|
| 595 | - * |
|
| 596 | - * @param DateTime $date |
|
| 597 | - * @return integer |
|
| 598 | - */ |
|
| 592 | + /** |
|
| 593 | + * Converts a DateTime object to a timestamp, which |
|
| 594 | + * is PHP 5.2 compatible. |
|
| 595 | + * |
|
| 596 | + * @param DateTime $date |
|
| 597 | + * @return integer |
|
| 598 | + */ |
|
| 599 | 599 | public static function date2timestamp(DateTime $date) : int |
| 600 | 600 | { |
| 601 | 601 | return ConvertHelper_Date::toTimestamp($date); |
| 602 | 602 | } |
| 603 | 603 | |
| 604 | - /** |
|
| 605 | - * Converts a timestamp into a DateTime instance. |
|
| 606 | - * @param int $timestamp |
|
| 607 | - * @return DateTime |
|
| 608 | - */ |
|
| 604 | + /** |
|
| 605 | + * Converts a timestamp into a DateTime instance. |
|
| 606 | + * @param int $timestamp |
|
| 607 | + * @return DateTime |
|
| 608 | + */ |
|
| 609 | 609 | public static function timestamp2date(int $timestamp) : DateTime |
| 610 | 610 | { |
| 611 | 611 | return ConvertHelper_Date::fromTimestamp($timestamp); |
| 612 | 612 | } |
| 613 | 613 | |
| 614 | - /** |
|
| 615 | - * Strips an absolute path to a file within the application |
|
| 616 | - * to make the path relative to the application root path. |
|
| 617 | - * |
|
| 618 | - * @param string $path |
|
| 619 | - * @return string |
|
| 620 | - * |
|
| 621 | - * @see FileHelper::relativizePath() |
|
| 622 | - * @see FileHelper::relativizePathByDepth() |
|
| 623 | - */ |
|
| 614 | + /** |
|
| 615 | + * Strips an absolute path to a file within the application |
|
| 616 | + * to make the path relative to the application root path. |
|
| 617 | + * |
|
| 618 | + * @param string $path |
|
| 619 | + * @return string |
|
| 620 | + * |
|
| 621 | + * @see FileHelper::relativizePath() |
|
| 622 | + * @see FileHelper::relativizePathByDepth() |
|
| 623 | + */ |
|
| 624 | 624 | public static function fileRelativize(string $path) : string |
| 625 | 625 | { |
| 626 | 626 | return FileHelper::relativizePathByDepth($path); |
| 627 | 627 | } |
| 628 | 628 | |
| 629 | 629 | /** |
| 630 | - * Converts a PHP regex to a javascript RegExp object statement. |
|
| 631 | - * |
|
| 632 | - * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
| 633 | - * More details are available on its usage there. |
|
| 634 | - * |
|
| 635 | - * @param string $regex A PHP preg regex |
|
| 636 | - * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
| 637 | - * @return string Depending on the specified return type. |
|
| 638 | - * |
|
| 639 | - * @see JSHelper::buildRegexStatement() |
|
| 640 | - */ |
|
| 630 | + * Converts a PHP regex to a javascript RegExp object statement. |
|
| 631 | + * |
|
| 632 | + * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
| 633 | + * More details are available on its usage there. |
|
| 634 | + * |
|
| 635 | + * @param string $regex A PHP preg regex |
|
| 636 | + * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
| 637 | + * @return string Depending on the specified return type. |
|
| 638 | + * |
|
| 639 | + * @see JSHelper::buildRegexStatement() |
|
| 640 | + */ |
|
| 641 | 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 | } |
| 645 | 645 | |
| 646 | - /** |
|
| 647 | - * Converts the specified variable to JSON. Works just |
|
| 648 | - * like the native `json_encode` method, except that it |
|
| 649 | - * will trigger an exception on failure, which has the |
|
| 650 | - * json error details included in its developer details. |
|
| 651 | - * |
|
| 652 | - * @param mixed $variable |
|
| 653 | - * @param int $options JSON encode options. |
|
| 654 | - * @param int $depth |
|
| 655 | - * @return string |
|
| 656 | - * |
|
| 657 | - * @throws ConvertHelper_Exception |
|
| 658 | - * @see ConvertHelper::ERROR_JSON_ENCODE_FAILED |
|
| 659 | - */ |
|
| 646 | + /** |
|
| 647 | + * Converts the specified variable to JSON. Works just |
|
| 648 | + * like the native `json_encode` method, except that it |
|
| 649 | + * will trigger an exception on failure, which has the |
|
| 650 | + * json error details included in its developer details. |
|
| 651 | + * |
|
| 652 | + * @param mixed $variable |
|
| 653 | + * @param int $options JSON encode options. |
|
| 654 | + * @param int $depth |
|
| 655 | + * @return string |
|
| 656 | + * |
|
| 657 | + * @throws ConvertHelper_Exception |
|
| 658 | + * @see ConvertHelper::ERROR_JSON_ENCODE_FAILED |
|
| 659 | + */ |
|
| 660 | 660 | public static function var2json($variable, int $options=0, int $depth=512) : string |
| 661 | 661 | { |
| 662 | 662 | $result = json_encode($variable, $options, $depth); |
@@ -691,12 +691,12 @@ discard block |
||
| 691 | 691 | ->toString(); |
| 692 | 692 | } |
| 693 | 693 | |
| 694 | - /** |
|
| 695 | - * Strips all known UTF byte order marks from the specified string. |
|
| 696 | - * |
|
| 697 | - * @param string $string |
|
| 698 | - * @return string |
|
| 699 | - */ |
|
| 694 | + /** |
|
| 695 | + * Strips all known UTF byte order marks from the specified string. |
|
| 696 | + * |
|
| 697 | + * @param string $string |
|
| 698 | + * @return string |
|
| 699 | + */ |
|
| 700 | 700 | public static function stripUTFBom(string $string) : string |
| 701 | 701 | { |
| 702 | 702 | $boms = FileHelper::getUTFBOMs(); |
@@ -715,69 +715,69 @@ discard block |
||
| 715 | 715 | return $string; |
| 716 | 716 | } |
| 717 | 717 | |
| 718 | - /** |
|
| 719 | - * Converts a string to valid utf8, regardless |
|
| 720 | - * of the string's encoding(s). |
|
| 721 | - * |
|
| 722 | - * @param string $string |
|
| 723 | - * @return string |
|
| 724 | - */ |
|
| 718 | + /** |
|
| 719 | + * Converts a string to valid utf8, regardless |
|
| 720 | + * of the string's encoding(s). |
|
| 721 | + * |
|
| 722 | + * @param string $string |
|
| 723 | + * @return string |
|
| 724 | + */ |
|
| 725 | 725 | public static function string2utf8(string $string) : string |
| 726 | 726 | { |
| 727 | 727 | return ConvertHelper_String::toUtf8($string); |
| 728 | 728 | } |
| 729 | 729 | |
| 730 | - /** |
|
| 731 | - * Checks whether the specified string is an ASCII |
|
| 732 | - * string, without any special or UTF8 characters. |
|
| 733 | - * Note: empty strings and NULL are considered ASCII. |
|
| 734 | - * Any variable types other than strings are not. |
|
| 735 | - * |
|
| 736 | - * @param string|float|int|NULL $string |
|
| 737 | - * @return boolean |
|
| 738 | - */ |
|
| 730 | + /** |
|
| 731 | + * Checks whether the specified string is an ASCII |
|
| 732 | + * string, without any special or UTF8 characters. |
|
| 733 | + * Note: empty strings and NULL are considered ASCII. |
|
| 734 | + * Any variable types other than strings are not. |
|
| 735 | + * |
|
| 736 | + * @param string|float|int|NULL $string |
|
| 737 | + * @return boolean |
|
| 738 | + */ |
|
| 739 | 739 | public static function isStringASCII($string) : bool |
| 740 | 740 | { |
| 741 | 741 | return ConvertHelper_String::isASCII(strval($string)); |
| 742 | 742 | } |
| 743 | 743 | |
| 744 | - /** |
|
| 745 | - * Adds HTML syntax highlighting to an URL. |
|
| 746 | - * |
|
| 747 | - * NOTE: Includes the necessary CSS styles. When |
|
| 748 | - * highlighting several URLs in the same page, |
|
| 749 | - * prefer using the `parseURL` function instead. |
|
| 750 | - * |
|
| 751 | - * @param string $url |
|
| 752 | - * @return string |
|
| 753 | - * @deprecated Use the Highlighter class directly instead. |
|
| 754 | - * @see Highlighter |
|
| 755 | - */ |
|
| 744 | + /** |
|
| 745 | + * Adds HTML syntax highlighting to an URL. |
|
| 746 | + * |
|
| 747 | + * NOTE: Includes the necessary CSS styles. When |
|
| 748 | + * highlighting several URLs in the same page, |
|
| 749 | + * prefer using the `parseURL` function instead. |
|
| 750 | + * |
|
| 751 | + * @param string $url |
|
| 752 | + * @return string |
|
| 753 | + * @deprecated Use the Highlighter class directly instead. |
|
| 754 | + * @see Highlighter |
|
| 755 | + */ |
|
| 756 | 756 | public static function highlight_url(string $url) : string |
| 757 | 757 | { |
| 758 | 758 | return Highlighter::url($url); |
| 759 | 759 | } |
| 760 | 760 | |
| 761 | - /** |
|
| 762 | - * Calculates a percentage match of the source string with the target string. |
|
| 763 | - * |
|
| 764 | - * Options are: |
|
| 765 | - * |
|
| 766 | - * - maxLevenshtein, default: 10 |
|
| 767 | - * Any levenshtein results above this value are ignored. |
|
| 768 | - * |
|
| 769 | - * - precision, default: 1 |
|
| 770 | - * The precision of the percentage float value |
|
| 771 | - * |
|
| 772 | - * @param string $source |
|
| 773 | - * @param string $target |
|
| 774 | - * @param array<string,mixed> $options |
|
| 775 | - * @return float |
|
| 776 | - * |
|
| 777 | - * @see ConvertHelper_TextComparer |
|
| 778 | - * @see ConvertHelper_TextComparer::OPTION_MAX_LEVENSHTEIN_DISTANCE |
|
| 779 | - * @see ConvertHelper_TextComparer::OPTION_PRECISION |
|
| 780 | - */ |
|
| 761 | + /** |
|
| 762 | + * Calculates a percentage match of the source string with the target string. |
|
| 763 | + * |
|
| 764 | + * Options are: |
|
| 765 | + * |
|
| 766 | + * - maxLevenshtein, default: 10 |
|
| 767 | + * Any levenshtein results above this value are ignored. |
|
| 768 | + * |
|
| 769 | + * - precision, default: 1 |
|
| 770 | + * The precision of the percentage float value |
|
| 771 | + * |
|
| 772 | + * @param string $source |
|
| 773 | + * @param string $target |
|
| 774 | + * @param array<string,mixed> $options |
|
| 775 | + * @return float |
|
| 776 | + * |
|
| 777 | + * @see ConvertHelper_TextComparer |
|
| 778 | + * @see ConvertHelper_TextComparer::OPTION_MAX_LEVENSHTEIN_DISTANCE |
|
| 779 | + * @see ConvertHelper_TextComparer::OPTION_PRECISION |
|
| 780 | + */ |
|
| 781 | 781 | public static function matchString(string $source, string $target, array $options=array()) : float |
| 782 | 782 | { |
| 783 | 783 | return (new ConvertHelper_TextComparer()) |
@@ -785,109 +785,109 @@ discard block |
||
| 785 | 785 | ->match($source, $target); |
| 786 | 786 | } |
| 787 | 787 | |
| 788 | - /** |
|
| 789 | - * Converts a date interval to a human-readable string with |
|
| 790 | - * all necessary time components, e.g. "1 year, 2 months and 4 days". |
|
| 791 | - * |
|
| 792 | - * @param DateInterval $interval |
|
| 793 | - * @return string |
|
| 794 | - * @see ConvertHelper_IntervalConverter |
|
| 795 | - * |
|
| 796 | - * @throws ConvertHelper_Exception |
|
| 797 | - * @see ConvertHelper_IntervalConverter::ERROR_MISSING_TRANSLATION |
|
| 798 | - */ |
|
| 788 | + /** |
|
| 789 | + * Converts a date interval to a human-readable string with |
|
| 790 | + * all necessary time components, e.g. "1 year, 2 months and 4 days". |
|
| 791 | + * |
|
| 792 | + * @param DateInterval $interval |
|
| 793 | + * @return string |
|
| 794 | + * @see ConvertHelper_IntervalConverter |
|
| 795 | + * |
|
| 796 | + * @throws ConvertHelper_Exception |
|
| 797 | + * @see ConvertHelper_IntervalConverter::ERROR_MISSING_TRANSLATION |
|
| 798 | + */ |
|
| 799 | 799 | public static function interval2string(DateInterval $interval) : string |
| 800 | 800 | { |
| 801 | 801 | return (new ConvertHelper_IntervalConverter()) |
| 802 | 802 | ->toString($interval); |
| 803 | 803 | } |
| 804 | 804 | |
| 805 | - /** |
|
| 806 | - * Converts an interval to its total amount of days. |
|
| 807 | - * @param DateInterval $interval |
|
| 808 | - * @return int |
|
| 809 | - */ |
|
| 805 | + /** |
|
| 806 | + * Converts an interval to its total amount of days. |
|
| 807 | + * @param DateInterval $interval |
|
| 808 | + * @return int |
|
| 809 | + */ |
|
| 810 | 810 | public static function interval2days(DateInterval $interval) : int |
| 811 | 811 | { |
| 812 | 812 | return ConvertHelper_DateInterval::toDays($interval); |
| 813 | 813 | } |
| 814 | 814 | |
| 815 | - /** |
|
| 816 | - * Converts an interval to its total amount of hours. |
|
| 817 | - * @param DateInterval $interval |
|
| 818 | - * @return int |
|
| 819 | - */ |
|
| 815 | + /** |
|
| 816 | + * Converts an interval to its total amount of hours. |
|
| 817 | + * @param DateInterval $interval |
|
| 818 | + * @return int |
|
| 819 | + */ |
|
| 820 | 820 | public static function interval2hours(DateInterval $interval) : int |
| 821 | 821 | { |
| 822 | 822 | return ConvertHelper_DateInterval::toHours($interval); |
| 823 | 823 | } |
| 824 | 824 | |
| 825 | - /** |
|
| 826 | - * Converts an interval to its total amount of minutes. |
|
| 827 | - * @param DateInterval $interval |
|
| 828 | - * @return int |
|
| 829 | - */ |
|
| 825 | + /** |
|
| 826 | + * Converts an interval to its total amount of minutes. |
|
| 827 | + * @param DateInterval $interval |
|
| 828 | + * @return int |
|
| 829 | + */ |
|
| 830 | 830 | public static function interval2minutes(DateInterval $interval) : int |
| 831 | 831 | { |
| 832 | 832 | return ConvertHelper_DateInterval::toMinutes($interval); |
| 833 | 833 | } |
| 834 | 834 | |
| 835 | - /** |
|
| 836 | - * Converts an interval to its total amount of seconds. |
|
| 837 | - * @param DateInterval $interval |
|
| 838 | - * @return int |
|
| 839 | - */ |
|
| 835 | + /** |
|
| 836 | + * Converts an interval to its total amount of seconds. |
|
| 837 | + * @param DateInterval $interval |
|
| 838 | + * @return int |
|
| 839 | + */ |
|
| 840 | 840 | public static function interval2seconds(DateInterval $interval) : int |
| 841 | 841 | { |
| 842 | 842 | return ConvertHelper_DateInterval::toSeconds($interval); |
| 843 | 843 | } |
| 844 | 844 | |
| 845 | - /** |
|
| 846 | - * Calculates the total amount of days / hours / minutes or seconds |
|
| 847 | - * of a date interval object (depending on the specified units), and |
|
| 848 | - * returns the total amount. |
|
| 849 | - * |
|
| 850 | - * @param DateInterval $interval |
|
| 851 | - * @param string $unit What total value to calculate. |
|
| 852 | - * @return integer |
|
| 853 | - * |
|
| 854 | - * @see ConvertHelper::INTERVAL_SECONDS |
|
| 855 | - * @see ConvertHelper::INTERVAL_MINUTES |
|
| 856 | - * @see ConvertHelper::INTERVAL_HOURS |
|
| 857 | - * @see ConvertHelper::INTERVAL_DAYS |
|
| 858 | - */ |
|
| 845 | + /** |
|
| 846 | + * Calculates the total amount of days / hours / minutes or seconds |
|
| 847 | + * of a date interval object (depending on the specified units), and |
|
| 848 | + * returns the total amount. |
|
| 849 | + * |
|
| 850 | + * @param DateInterval $interval |
|
| 851 | + * @param string $unit What total value to calculate. |
|
| 852 | + * @return integer |
|
| 853 | + * |
|
| 854 | + * @see ConvertHelper::INTERVAL_SECONDS |
|
| 855 | + * @see ConvertHelper::INTERVAL_MINUTES |
|
| 856 | + * @see ConvertHelper::INTERVAL_HOURS |
|
| 857 | + * @see ConvertHelper::INTERVAL_DAYS |
|
| 858 | + */ |
|
| 859 | 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 | } |
| 863 | 863 | |
| 864 | - /** |
|
| 865 | - * Converts a date to the corresponding day name. |
|
| 866 | - * |
|
| 867 | - * @param DateTime $date |
|
| 868 | - * @param bool $short |
|
| 869 | - * @return string|NULL |
|
| 870 | - */ |
|
| 864 | + /** |
|
| 865 | + * Converts a date to the corresponding day name. |
|
| 866 | + * |
|
| 867 | + * @param DateTime $date |
|
| 868 | + * @param bool $short |
|
| 869 | + * @return string|NULL |
|
| 870 | + */ |
|
| 871 | 871 | public static function date2dayName(DateTime $date, bool $short=false) : ?string |
| 872 | 872 | { |
| 873 | 873 | return ConvertHelper_Date::toDayName($date, $short); |
| 874 | 874 | } |
| 875 | 875 | |
| 876 | - /** |
|
| 877 | - * Retrieves a list of english day names. |
|
| 878 | - * @return string[] |
|
| 879 | - */ |
|
| 876 | + /** |
|
| 877 | + * Retrieves a list of english day names. |
|
| 878 | + * @return string[] |
|
| 879 | + */ |
|
| 880 | 880 | public static function getDayNamesInvariant() : array |
| 881 | 881 | { |
| 882 | 882 | return ConvertHelper_Date::getDayNamesInvariant(); |
| 883 | 883 | } |
| 884 | 884 | |
| 885 | - /** |
|
| 886 | - * Retrieves the day names list for the current locale. |
|
| 887 | - * |
|
| 888 | - * @param bool $short |
|
| 889 | - * @return string[] |
|
| 890 | - */ |
|
| 885 | + /** |
|
| 886 | + * Retrieves the day names list for the current locale. |
|
| 887 | + * |
|
| 888 | + * @param bool $short |
|
| 889 | + * @return string[] |
|
| 890 | + */ |
|
| 891 | 891 | public static function getDayNames(bool $short=false) : array |
| 892 | 892 | { |
| 893 | 893 | return ConvertHelper_Date::getDayNames($short); |
@@ -906,68 +906,68 @@ discard block |
||
| 906 | 906 | return ConvertHelper_Array::implodeWithAnd($list, $sep, $conjunction); |
| 907 | 907 | } |
| 908 | 908 | |
| 909 | - /** |
|
| 910 | - * Splits a string into an array of all characters it is composed of. |
|
| 911 | - * Unicode character safe. |
|
| 912 | - * |
|
| 913 | - * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
| 914 | - * characters. |
|
| 915 | - * |
|
| 916 | - * @param string $string |
|
| 917 | - * @return string[] |
|
| 918 | - */ |
|
| 909 | + /** |
|
| 910 | + * Splits a string into an array of all characters it is composed of. |
|
| 911 | + * Unicode character safe. |
|
| 912 | + * |
|
| 913 | + * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
| 914 | + * characters. |
|
| 915 | + * |
|
| 916 | + * @param string $string |
|
| 917 | + * @return string[] |
|
| 918 | + */ |
|
| 919 | 919 | public static function string2array(string $string) : array |
| 920 | 920 | { |
| 921 | 921 | return ConvertHelper_String::toArray($string); |
| 922 | 922 | } |
| 923 | 923 | |
| 924 | - /** |
|
| 925 | - * Checks whether the specified string contains HTML code. |
|
| 926 | - * |
|
| 927 | - * @param string $string |
|
| 928 | - * @return boolean |
|
| 929 | - */ |
|
| 924 | + /** |
|
| 925 | + * Checks whether the specified string contains HTML code. |
|
| 926 | + * |
|
| 927 | + * @param string $string |
|
| 928 | + * @return boolean |
|
| 929 | + */ |
|
| 930 | 930 | public static function isStringHTML(string $string) : bool |
| 931 | 931 | { |
| 932 | 932 | return ConvertHelper_String::isHTML($string); |
| 933 | 933 | } |
| 934 | 934 | |
| 935 | - /** |
|
| 936 | - * UTF8-safe wordwrap method: works like the regular wordwrap |
|
| 937 | - * PHP function but compatible with UTF8. Otherwise the lengths |
|
| 938 | - * are not calculated correctly. |
|
| 939 | - * |
|
| 940 | - * @param string $str |
|
| 941 | - * @param int $width |
|
| 942 | - * @param string $break |
|
| 943 | - * @param bool $cut |
|
| 944 | - * @return string |
|
| 945 | - */ |
|
| 935 | + /** |
|
| 936 | + * UTF8-safe wordwrap method: works like the regular wordwrap |
|
| 937 | + * PHP function but compatible with UTF8. Otherwise the lengths |
|
| 938 | + * are not calculated correctly. |
|
| 939 | + * |
|
| 940 | + * @param string $str |
|
| 941 | + * @param int $width |
|
| 942 | + * @param string $break |
|
| 943 | + * @param bool $cut |
|
| 944 | + * @return string |
|
| 945 | + */ |
|
| 946 | 946 | public static function wordwrap(string $str, int $width = 75, string $break = "\n", bool $cut = false) : string |
| 947 | 947 | { |
| 948 | 948 | return ConvertHelper_String::wordwrap($str, $width, $break, $cut); |
| 949 | 949 | } |
| 950 | 950 | |
| 951 | - /** |
|
| 952 | - * Calculates the byte length of a string, taking into |
|
| 953 | - * account any unicode characters. |
|
| 954 | - * |
|
| 955 | - * @param string $string |
|
| 956 | - * @return int |
|
| 957 | - */ |
|
| 951 | + /** |
|
| 952 | + * Calculates the byte length of a string, taking into |
|
| 953 | + * account any unicode characters. |
|
| 954 | + * |
|
| 955 | + * @param string $string |
|
| 956 | + * @return int |
|
| 957 | + */ |
|
| 958 | 958 | public static function string2bytes(string $string): int |
| 959 | 959 | { |
| 960 | 960 | return ConvertHelper_String::toBytes($string); |
| 961 | 961 | } |
| 962 | 962 | |
| 963 | - /** |
|
| 964 | - * Creates a short, 8-character long hash for the specified string. |
|
| 965 | - * |
|
| 966 | - * WARNING: Not cryptographically safe. |
|
| 967 | - * |
|
| 968 | - * @param string $string |
|
| 969 | - * @return string |
|
| 970 | - */ |
|
| 963 | + /** |
|
| 964 | + * Creates a short, 8-character long hash for the specified string. |
|
| 965 | + * |
|
| 966 | + * WARNING: Not cryptographically safe. |
|
| 967 | + * |
|
| 968 | + * @param string $string |
|
| 969 | + * @return string |
|
| 970 | + */ |
|
| 971 | 971 | public static function string2shortHash(string $string) : string |
| 972 | 972 | { |
| 973 | 973 | return ConvertHelper_String::toShortHash($string); |
@@ -1013,88 +1013,88 @@ discard block |
||
| 1013 | 1013 | return ConvertHelper_ThrowableInfo::fromThrowable($e); |
| 1014 | 1014 | } |
| 1015 | 1015 | |
| 1016 | - /** |
|
| 1017 | - * Parses the specified query string like the native |
|
| 1018 | - * function <code>parse_str</code>, without the key |
|
| 1019 | - * naming limitations. |
|
| 1020 | - * |
|
| 1021 | - * Using parse_str, dots or spaces in key names are |
|
| 1022 | - * replaced by underscores. This method keeps all names |
|
| 1023 | - * intact. |
|
| 1024 | - * |
|
| 1025 | - * It still uses the parse_str implementation as it |
|
| 1026 | - * is tested and tried, but fixes the parameter names |
|
| 1027 | - * after parsing, as needed. |
|
| 1028 | - * |
|
| 1029 | - * @param string $queryString |
|
| 1030 | - * @return array<string,string> |
|
| 1031 | - * @see ConvertHelper_QueryParser |
|
| 1032 | - */ |
|
| 1016 | + /** |
|
| 1017 | + * Parses the specified query string like the native |
|
| 1018 | + * function <code>parse_str</code>, without the key |
|
| 1019 | + * naming limitations. |
|
| 1020 | + * |
|
| 1021 | + * Using parse_str, dots or spaces in key names are |
|
| 1022 | + * replaced by underscores. This method keeps all names |
|
| 1023 | + * intact. |
|
| 1024 | + * |
|
| 1025 | + * It still uses the parse_str implementation as it |
|
| 1026 | + * is tested and tried, but fixes the parameter names |
|
| 1027 | + * after parsing, as needed. |
|
| 1028 | + * |
|
| 1029 | + * @param string $queryString |
|
| 1030 | + * @return array<string,string> |
|
| 1031 | + * @see ConvertHelper_QueryParser |
|
| 1032 | + */ |
|
| 1033 | 1033 | public static function parseQueryString(string $queryString) : array |
| 1034 | 1034 | { |
| 1035 | 1035 | $parser = new ConvertHelper_QueryParser(); |
| 1036 | 1036 | return $parser->parse($queryString); |
| 1037 | 1037 | } |
| 1038 | 1038 | |
| 1039 | - /** |
|
| 1040 | - * Searches for needle in the specified string, and returns a list |
|
| 1041 | - * of all occurrences, including the matched string. The matched |
|
| 1042 | - * string is useful when doing a case-insensitive search, as it |
|
| 1043 | - * shows the exact matched case of needle. |
|
| 1044 | - * |
|
| 1045 | - * @param string $needle |
|
| 1046 | - * @param string $haystack |
|
| 1047 | - * @param bool $caseInsensitive |
|
| 1048 | - * @return ConvertHelper_StringMatch[] |
|
| 1049 | - */ |
|
| 1039 | + /** |
|
| 1040 | + * Searches for needle in the specified string, and returns a list |
|
| 1041 | + * of all occurrences, including the matched string. The matched |
|
| 1042 | + * string is useful when doing a case-insensitive search, as it |
|
| 1043 | + * shows the exact matched case of needle. |
|
| 1044 | + * |
|
| 1045 | + * @param string $needle |
|
| 1046 | + * @param string $haystack |
|
| 1047 | + * @param bool $caseInsensitive |
|
| 1048 | + * @return ConvertHelper_StringMatch[] |
|
| 1049 | + */ |
|
| 1050 | 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 | } |
| 1054 | 1054 | |
| 1055 | - /** |
|
| 1056 | - * Like explode, but trims all entries, and removes |
|
| 1057 | - * empty entries from the resulting array. |
|
| 1058 | - * |
|
| 1059 | - * @param string $delimiter |
|
| 1060 | - * @param string $string |
|
| 1061 | - * @return string[] |
|
| 1062 | - */ |
|
| 1055 | + /** |
|
| 1056 | + * Like explode, but trims all entries, and removes |
|
| 1057 | + * empty entries from the resulting array. |
|
| 1058 | + * |
|
| 1059 | + * @param string $delimiter |
|
| 1060 | + * @param string $string |
|
| 1061 | + * @return string[] |
|
| 1062 | + */ |
|
| 1063 | 1063 | public static function explodeTrim(string $delimiter, string $string) : array |
| 1064 | 1064 | { |
| 1065 | 1065 | return ConvertHelper_String::explodeTrim($delimiter, $string); |
| 1066 | 1066 | } |
| 1067 | 1067 | |
| 1068 | - /** |
|
| 1069 | - * Detects the most used end-of-line character in the subject string. |
|
| 1070 | - * |
|
| 1071 | - * @param string $subjectString The string to check. |
|
| 1072 | - * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
| 1073 | - */ |
|
| 1068 | + /** |
|
| 1069 | + * Detects the most used end-of-line character in the subject string. |
|
| 1070 | + * |
|
| 1071 | + * @param string $subjectString The string to check. |
|
| 1072 | + * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
| 1073 | + */ |
|
| 1074 | 1074 | public static function detectEOLCharacter(string $subjectString) : ?ConvertHelper_EOL |
| 1075 | 1075 | { |
| 1076 | 1076 | return ConvertHelper_EOL::detect($subjectString); |
| 1077 | 1077 | } |
| 1078 | 1078 | |
| 1079 | - /** |
|
| 1080 | - * Removes the specified keys from the target array, |
|
| 1081 | - * if they exist. |
|
| 1082 | - * |
|
| 1083 | - * @param array<string|int,mixed> $array |
|
| 1084 | - * @param string[] $keys |
|
| 1085 | - */ |
|
| 1079 | + /** |
|
| 1080 | + * Removes the specified keys from the target array, |
|
| 1081 | + * if they exist. |
|
| 1082 | + * |
|
| 1083 | + * @param array<string|int,mixed> $array |
|
| 1084 | + * @param string[] $keys |
|
| 1085 | + */ |
|
| 1086 | 1086 | public static function arrayRemoveKeys(array &$array, array $keys) : void |
| 1087 | 1087 | { |
| 1088 | 1088 | ConvertHelper_Array::removeKeys($array, $keys); |
| 1089 | 1089 | } |
| 1090 | 1090 | |
| 1091 | - /** |
|
| 1092 | - * Checks if the specified variable is an integer or a string containing an integer. |
|
| 1093 | - * Accepts both positive and negative integers. |
|
| 1094 | - * |
|
| 1095 | - * @param mixed $value |
|
| 1096 | - * @return bool |
|
| 1097 | - */ |
|
| 1091 | + /** |
|
| 1092 | + * Checks if the specified variable is an integer or a string containing an integer. |
|
| 1093 | + * Accepts both positive and negative integers. |
|
| 1094 | + * |
|
| 1095 | + * @param mixed $value |
|
| 1096 | + * @return bool |
|
| 1097 | + */ |
|
| 1098 | 1098 | public static function isInteger($value) : bool |
| 1099 | 1099 | { |
| 1100 | 1100 | if(is_int($value)) { |
@@ -1114,52 +1114,52 @@ discard block |
||
| 1114 | 1114 | return false; |
| 1115 | 1115 | } |
| 1116 | 1116 | |
| 1117 | - /** |
|
| 1118 | - * Converts an amount of seconds to a DateInterval object. |
|
| 1119 | - * |
|
| 1120 | - * @param int $seconds |
|
| 1121 | - * @return DateInterval |
|
| 1122 | - * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
| 1123 | - * |
|
| 1124 | - * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
| 1125 | - */ |
|
| 1117 | + /** |
|
| 1118 | + * Converts an amount of seconds to a DateInterval object. |
|
| 1119 | + * |
|
| 1120 | + * @param int $seconds |
|
| 1121 | + * @return DateInterval |
|
| 1122 | + * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
| 1123 | + * |
|
| 1124 | + * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
| 1125 | + */ |
|
| 1126 | 1126 | public static function seconds2interval(int $seconds) : DateInterval |
| 1127 | 1127 | { |
| 1128 | 1128 | return ConvertHelper_DateInterval::fromSeconds($seconds)->getInterval(); |
| 1129 | 1129 | } |
| 1130 | 1130 | |
| 1131 | - /** |
|
| 1132 | - * Converts a size string like "50 MB" to the corresponding byte size. |
|
| 1133 | - * It is case-insensitive, ignores spaces, and supports both traditional |
|
| 1134 | - * "MB" and "MiB" notations. |
|
| 1135 | - * |
|
| 1136 | - * @param string $size |
|
| 1137 | - * @return int |
|
| 1138 | - */ |
|
| 1131 | + /** |
|
| 1132 | + * Converts a size string like "50 MB" to the corresponding byte size. |
|
| 1133 | + * It is case-insensitive, ignores spaces, and supports both traditional |
|
| 1134 | + * "MB" and "MiB" notations. |
|
| 1135 | + * |
|
| 1136 | + * @param string $size |
|
| 1137 | + * @return int |
|
| 1138 | + */ |
|
| 1139 | 1139 | public static function size2bytes(string $size) : int |
| 1140 | 1140 | { |
| 1141 | 1141 | return self::parseSize($size)->toBytes(); |
| 1142 | 1142 | } |
| 1143 | 1143 | |
| 1144 | - /** |
|
| 1145 | - * Parses a size string like "50 MB" and returns a size notation instance |
|
| 1146 | - * that has utility methods to access information on it, and convert it. |
|
| 1147 | - * |
|
| 1148 | - * @param string $size |
|
| 1149 | - * @return ConvertHelper_SizeNotation |
|
| 1150 | - */ |
|
| 1144 | + /** |
|
| 1145 | + * Parses a size string like "50 MB" and returns a size notation instance |
|
| 1146 | + * that has utility methods to access information on it, and convert it. |
|
| 1147 | + * |
|
| 1148 | + * @param string $size |
|
| 1149 | + * @return ConvertHelper_SizeNotation |
|
| 1150 | + */ |
|
| 1151 | 1151 | public static function parseSize(string $size) : ConvertHelper_SizeNotation |
| 1152 | 1152 | { |
| 1153 | 1153 | return new ConvertHelper_SizeNotation($size); |
| 1154 | 1154 | } |
| 1155 | 1155 | |
| 1156 | - /** |
|
| 1157 | - * Creates a URL finder instance, which can be used to find |
|
| 1158 | - * URLs in a string - be it plain text, or HTML. |
|
| 1159 | - * |
|
| 1160 | - * @param string $subject |
|
| 1161 | - * @return ConvertHelper_URLFinder |
|
| 1162 | - */ |
|
| 1156 | + /** |
|
| 1157 | + * Creates a URL finder instance, which can be used to find |
|
| 1158 | + * URLs in a string - be it plain text, or HTML. |
|
| 1159 | + * |
|
| 1160 | + * @param string $subject |
|
| 1161 | + * @return ConvertHelper_URLFinder |
|
| 1162 | + */ |
|
| 1163 | 1163 | public static function createURLFinder(string $subject) : ConvertHelper_URLFinder |
| 1164 | 1164 | { |
| 1165 | 1165 | return new ConvertHelper_URLFinder($subject); |
@@ -31,9 +31,9 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | const VALIDATION_ERROR_NEGATIVE_VALUE = 43803; |
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * @var string |
|
| 36 | - */ |
|
| 34 | + /** |
|
| 35 | + * @var string |
|
| 36 | + */ |
|
| 37 | 37 | protected $sizeString; |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -41,44 +41,44 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | protected $sizeDefinition; |
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * @var integer |
|
| 46 | - */ |
|
| 44 | + /** |
|
| 45 | + * @var integer |
|
| 46 | + */ |
|
| 47 | 47 | protected $bytes = 0; |
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * @var bool |
|
| 51 | - */ |
|
| 49 | + /** |
|
| 50 | + * @var bool |
|
| 51 | + */ |
|
| 52 | 52 | protected $valid = true; |
| 53 | 53 | |
| 54 | - /** |
|
| 55 | - * @var string |
|
| 56 | - */ |
|
| 54 | + /** |
|
| 55 | + * @var string |
|
| 56 | + */ |
|
| 57 | 57 | protected $units = null; |
| 58 | 58 | |
| 59 | - /** |
|
| 60 | - * @var string |
|
| 61 | - */ |
|
| 59 | + /** |
|
| 60 | + * @var string |
|
| 61 | + */ |
|
| 62 | 62 | protected $number = ''; |
| 63 | 63 | |
| 64 | - /** |
|
| 65 | - * @var string |
|
| 66 | - */ |
|
| 64 | + /** |
|
| 65 | + * @var string |
|
| 66 | + */ |
|
| 67 | 67 | protected $errorMessage = ''; |
| 68 | 68 | |
| 69 | - /** |
|
| 70 | - * @var int |
|
| 71 | - */ |
|
| 69 | + /** |
|
| 70 | + * @var int |
|
| 71 | + */ |
|
| 72 | 72 | protected $errorCode = 0; |
| 73 | 73 | |
| 74 | - /** |
|
| 75 | - * Create a new instance for the specified size string. |
|
| 76 | - * |
|
| 77 | - * @param string $sizeString A size notation in the format "50 MB", or a number of bytes without units. Spaces are ignored, so "50MB" = "50 MB" = " 50 MB ". Floating point values are accepted, both with dot and comma notation ("50.5" = "50,5"). To use Base 2 values, ose appropriate units, e.g. "50 MiB", "1.5 GiB". The units are case-insensitive, so "50 MB" = "50 mb". |
|
| 78 | - * |
|
| 79 | - * @throws ConvertHelper_Exception |
|
| 80 | - * @see ConvertHelper_StorageSizeEnum::ERROR_UNKNOWN_UNIT_NAME |
|
| 81 | - */ |
|
| 74 | + /** |
|
| 75 | + * Create a new instance for the specified size string. |
|
| 76 | + * |
|
| 77 | + * @param string $sizeString A size notation in the format "50 MB", or a number of bytes without units. Spaces are ignored, so "50MB" = "50 MB" = " 50 MB ". Floating point values are accepted, both with dot and comma notation ("50.5" = "50,5"). To use Base 2 values, ose appropriate units, e.g. "50 MiB", "1.5 GiB". The units are case-insensitive, so "50 MB" = "50 mb". |
|
| 78 | + * |
|
| 79 | + * @throws ConvertHelper_Exception |
|
| 80 | + * @see ConvertHelper_StorageSizeEnum::ERROR_UNKNOWN_UNIT_NAME |
|
| 81 | + */ |
|
| 82 | 82 | public function __construct(string $sizeString) |
| 83 | 83 | { |
| 84 | 84 | $this->sizeString = $this->cleanString($sizeString); |
@@ -86,31 +86,31 @@ discard block |
||
| 86 | 86 | $this->convert(); |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - /** |
|
| 90 | - * Gets the amount of bytes contained in the size notation. |
|
| 91 | - * @return int |
|
| 92 | - */ |
|
| 89 | + /** |
|
| 90 | + * Gets the amount of bytes contained in the size notation. |
|
| 91 | + * @return int |
|
| 92 | + */ |
|
| 93 | 93 | public function toBytes() : int |
| 94 | 94 | { |
| 95 | 95 | return $this->bytes; |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - /** |
|
| 99 | - * Converts the size notation to a human-readable string, e.g. "50 MB". |
|
| 100 | - * |
|
| 101 | - * @param int $precision |
|
| 102 | - * @return string |
|
| 103 | - * @see ConvertHelper::bytes2readable() |
|
| 104 | - */ |
|
| 98 | + /** |
|
| 99 | + * Converts the size notation to a human-readable string, e.g. "50 MB". |
|
| 100 | + * |
|
| 101 | + * @param int $precision |
|
| 102 | + * @return string |
|
| 103 | + * @see ConvertHelper::bytes2readable() |
|
| 104 | + */ |
|
| 105 | 105 | public function toString(int $precision=1) : string |
| 106 | 106 | { |
| 107 | 107 | return ConvertHelper::bytes2readable($this->bytes, $precision, $this->getBase()); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - /** |
|
| 111 | - * Retrieves the detected number's base. |
|
| 112 | - * @return int The base number (1000 for Base 10, or 1024 for Base 2), or 0 if it is not valid. |
|
| 113 | - */ |
|
| 110 | + /** |
|
| 111 | + * Retrieves the detected number's base. |
|
| 112 | + * @return int The base number (1000 for Base 10, or 1024 for Base 2), or 0 if it is not valid. |
|
| 113 | + */ |
|
| 114 | 114 | public function getBase() : int |
| 115 | 115 | { |
| 116 | 116 | if($this->isValid()) { |
@@ -120,13 +120,13 @@ discard block |
||
| 120 | 120 | return 0; |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | - /** |
|
| 124 | - * Retrieves the detected storage size instance, if |
|
| 125 | - * the size string is valid. |
|
| 126 | - * |
|
| 127 | - * @return ConvertHelper_StorageSizeEnum_Size|NULL |
|
| 128 | - * @see ConvertHelper_StorageSizeEnum_Size |
|
| 129 | - */ |
|
| 123 | + /** |
|
| 124 | + * Retrieves the detected storage size instance, if |
|
| 125 | + * the size string is valid. |
|
| 126 | + * |
|
| 127 | + * @return ConvertHelper_StorageSizeEnum_Size|NULL |
|
| 128 | + * @see ConvertHelper_StorageSizeEnum_Size |
|
| 129 | + */ |
|
| 130 | 130 | public function getSizeDefinition() : ?ConvertHelper_StorageSizeEnum_Size |
| 131 | 131 | { |
| 132 | 132 | if($this->isValid()) { |
@@ -136,27 +136,27 @@ discard block |
||
| 136 | 136 | return null; |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - /** |
|
| 140 | - * Checks whether the size notation was valid and could be parsed |
|
| 141 | - * into a meaningful byte value. If this returns `false`, it is |
|
| 142 | - * possible to use the `getErrorXXX` methods to retrieve information |
|
| 143 | - * on what went wrong. |
|
| 144 | - * |
|
| 145 | - * @return bool |
|
| 146 | - * @see ConvertHelper_SizeNotation::getErrorMessage() |
|
| 147 | - * @see ConvertHelper_SizeNotation::getErrorCode() |
|
| 148 | - */ |
|
| 139 | + /** |
|
| 140 | + * Checks whether the size notation was valid and could be parsed |
|
| 141 | + * into a meaningful byte value. If this returns `false`, it is |
|
| 142 | + * possible to use the `getErrorXXX` methods to retrieve information |
|
| 143 | + * on what went wrong. |
|
| 144 | + * |
|
| 145 | + * @return bool |
|
| 146 | + * @see ConvertHelper_SizeNotation::getErrorMessage() |
|
| 147 | + * @see ConvertHelper_SizeNotation::getErrorCode() |
|
| 148 | + */ |
|
| 149 | 149 | public function isValid() : bool |
| 150 | 150 | { |
| 151 | 151 | return $this->valid; |
| 152 | 152 | } |
| 153 | 153 | |
| 154 | - /** |
|
| 155 | - * Retrieves the error message if the size notation validation failed. |
|
| 156 | - * |
|
| 157 | - * @return string |
|
| 158 | - * @see ConvertHelper_SizeNotation::getErrorCode() |
|
| 159 | - */ |
|
| 154 | + /** |
|
| 155 | + * Retrieves the error message if the size notation validation failed. |
|
| 156 | + * |
|
| 157 | + * @return string |
|
| 158 | + * @see ConvertHelper_SizeNotation::getErrorCode() |
|
| 159 | + */ |
|
| 160 | 160 | public function getErrorMessage() : string |
| 161 | 161 | { |
| 162 | 162 | return $this->errorMessage; |
@@ -201,12 +201,12 @@ discard block |
||
| 201 | 201 | ); |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | - /** |
|
| 205 | - * Detects the units and the number in the size notation string. |
|
| 206 | - * Populates the `units` and `number` properties. |
|
| 207 | - * |
|
| 208 | - * @return bool Whether the string could be parsed successfully. |
|
| 209 | - */ |
|
| 204 | + /** |
|
| 205 | + * Detects the units and the number in the size notation string. |
|
| 206 | + * Populates the `units` and `number` properties. |
|
| 207 | + * |
|
| 208 | + * @return bool Whether the string could be parsed successfully. |
|
| 209 | + */ |
|
| 210 | 210 | protected function detectParts() : bool |
| 211 | 211 | { |
| 212 | 212 | $units = ConvertHelper_StorageSizeEnum::getSizeNames(); |
@@ -242,16 +242,16 @@ discard block |
||
| 242 | 242 | return true; |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | - /** |
|
| 246 | - * If the validation fails, this is used to store the reason for retrieval later. |
|
| 247 | - * |
|
| 248 | - * @param string $message |
|
| 249 | - * @param int $code |
|
| 250 | - * |
|
| 251 | - * @see ConvertHelper_SizeNotation::isValid() |
|
| 252 | - * @see ConvertHelper_SizeNotation::getErrorMessage() |
|
| 253 | - * @see ConvertHelper_SizeNotation::getErrorCode() |
|
| 254 | - */ |
|
| 245 | + /** |
|
| 246 | + * If the validation fails, this is used to store the reason for retrieval later. |
|
| 247 | + * |
|
| 248 | + * @param string $message |
|
| 249 | + * @param int $code |
|
| 250 | + * |
|
| 251 | + * @see ConvertHelper_SizeNotation::isValid() |
|
| 252 | + * @see ConvertHelper_SizeNotation::getErrorMessage() |
|
| 253 | + * @see ConvertHelper_SizeNotation::getErrorCode() |
|
| 254 | + */ |
|
| 255 | 255 | protected function setError(string $message, int $code) : void |
| 256 | 256 | { |
| 257 | 257 | $this->valid = false; |
@@ -259,12 +259,12 @@ discard block |
||
| 259 | 259 | $this->errorCode = $code; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - /** |
|
| 263 | - * Retrieves the error code, if the size notation validation failed. |
|
| 264 | - * |
|
| 265 | - * @return int |
|
| 266 | - * @see ConvertHelper_SizeNotation::getErrorMessage() |
|
| 267 | - */ |
|
| 262 | + /** |
|
| 263 | + * Retrieves the error code, if the size notation validation failed. |
|
| 264 | + * |
|
| 265 | + * @return int |
|
| 266 | + * @see ConvertHelper_SizeNotation::getErrorMessage() |
|
| 267 | + */ |
|
| 268 | 268 | public function getErrorCode() : int |
| 269 | 269 | { |
| 270 | 270 | return $this->errorCode; |
@@ -20,43 +20,43 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class ConvertHelper_TabsNormalizer |
| 22 | 22 | { |
| 23 | - /** |
|
| 24 | - * @var integer |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * @var integer |
|
| 25 | + */ |
|
| 26 | 26 | protected $max = 0; |
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * @var integer |
|
| 30 | - */ |
|
| 28 | + /** |
|
| 29 | + * @var integer |
|
| 30 | + */ |
|
| 31 | 31 | protected $min = PHP_INT_MAX; |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @var bool |
|
| 35 | - */ |
|
| 33 | + /** |
|
| 34 | + * @var bool |
|
| 35 | + */ |
|
| 36 | 36 | protected $tabs2spaces = false; |
| 37 | 37 | |
| 38 | - /** |
|
| 39 | - * @var string[] |
|
| 40 | - */ |
|
| 38 | + /** |
|
| 39 | + * @var string[] |
|
| 40 | + */ |
|
| 41 | 41 | protected $lines = array(); |
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * @var string |
|
| 45 | - */ |
|
| 43 | + /** |
|
| 44 | + * @var string |
|
| 45 | + */ |
|
| 46 | 46 | protected $eol = ''; |
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * @var integer |
|
| 50 | - */ |
|
| 48 | + /** |
|
| 49 | + * @var integer |
|
| 50 | + */ |
|
| 51 | 51 | protected $tabSize = 4; |
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Whether to enable or disable the conversion |
|
| 55 | - * of tabs to spaces. |
|
| 56 | - * |
|
| 57 | - * @param bool $enable |
|
| 58 | - * @return ConvertHelper_TabsNormalizer |
|
| 59 | - */ |
|
| 53 | + /** |
|
| 54 | + * Whether to enable or disable the conversion |
|
| 55 | + * of tabs to spaces. |
|
| 56 | + * |
|
| 57 | + * @param bool $enable |
|
| 58 | + * @return ConvertHelper_TabsNormalizer |
|
| 59 | + */ |
|
| 60 | 60 | public function convertTabsToSpaces(bool $enable=true) : ConvertHelper_TabsNormalizer |
| 61 | 61 | { |
| 62 | 62 | $this->tabs2spaces = $enable; |
@@ -64,13 +64,13 @@ discard block |
||
| 64 | 64 | return $this; |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * Sets the size of a tab, in spaces. Used to convert tabs |
|
| 69 | - * from spaces and the other way around. Defaults to 4. |
|
| 70 | - * |
|
| 71 | - * @param int $amountSpaces |
|
| 72 | - * @return ConvertHelper_TabsNormalizer |
|
| 73 | - */ |
|
| 67 | + /** |
|
| 68 | + * Sets the size of a tab, in spaces. Used to convert tabs |
|
| 69 | + * from spaces and the other way around. Defaults to 4. |
|
| 70 | + * |
|
| 71 | + * @param int $amountSpaces |
|
| 72 | + * @return ConvertHelper_TabsNormalizer |
|
| 73 | + */ |
|
| 74 | 74 | public function setTabSize(int $amountSpaces) : ConvertHelper_TabsNormalizer |
| 75 | 75 | { |
| 76 | 76 | $this->tabSize = $amountSpaces; |
@@ -78,15 +78,15 @@ discard block |
||
| 78 | 78 | return $this; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - /** |
|
| 82 | - * Normalizes tabs in the specified string by indenting everything |
|
| 83 | - * back to the minimum tab distance. With the second parameter, |
|
| 84 | - * tabs can optionally be converted to spaces as well (recommended |
|
| 85 | - * for HTML output). |
|
| 86 | - * |
|
| 87 | - * @param string $string |
|
| 88 | - * @return string |
|
| 89 | - */ |
|
| 81 | + /** |
|
| 82 | + * Normalizes tabs in the specified string by indenting everything |
|
| 83 | + * back to the minimum tab distance. With the second parameter, |
|
| 84 | + * tabs can optionally be converted to spaces as well (recommended |
|
| 85 | + * for HTML output). |
|
| 86 | + * |
|
| 87 | + * @param string $string |
|
| 88 | + * @return string |
|
| 89 | + */ |
|
| 90 | 90 | public function normalize(string $string) : string |
| 91 | 91 | { |
| 92 | 92 | $this->splitLines($string); |
@@ -143,10 +143,10 @@ discard block |
||
| 143 | 143 | return implode($this->eol, $converted); |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - /** |
|
| 147 | - * Finds out the minimum and maximum amount of |
|
| 148 | - * tabs in the string. |
|
| 149 | - */ |
|
| 146 | + /** |
|
| 147 | + * Finds out the minimum and maximum amount of |
|
| 148 | + * tabs in the string. |
|
| 149 | + */ |
|
| 150 | 150 | protected function countOccurrences() : void |
| 151 | 151 | { |
| 152 | 152 | foreach($this->lines as $line) |
@@ -18,49 +18,49 @@ discard block |
||
| 18 | 18 | const CONTEXT_COMMAND_LINE = 'cli'; |
| 19 | 19 | const CONTEXT_WEB = 'web'; |
| 20 | 20 | |
| 21 | - /** |
|
| 22 | - * @var Throwable |
|
| 23 | - */ |
|
| 21 | + /** |
|
| 22 | + * @var Throwable |
|
| 23 | + */ |
|
| 24 | 24 | protected $exception; |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * @var ConvertHelper_ThrowableInfo_Call[] |
|
| 28 | - */ |
|
| 26 | + /** |
|
| 27 | + * @var ConvertHelper_ThrowableInfo_Call[] |
|
| 28 | + */ |
|
| 29 | 29 | protected $calls = array(); |
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * @var integer |
|
| 33 | - */ |
|
| 31 | + /** |
|
| 32 | + * @var integer |
|
| 33 | + */ |
|
| 34 | 34 | protected $code; |
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * @var string |
|
| 38 | - */ |
|
| 36 | + /** |
|
| 37 | + * @var string |
|
| 38 | + */ |
|
| 39 | 39 | protected $message; |
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * @var integer |
|
| 43 | - */ |
|
| 41 | + /** |
|
| 42 | + * @var integer |
|
| 43 | + */ |
|
| 44 | 44 | protected $callsCount = 0; |
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * @var ConvertHelper_ThrowableInfo |
|
| 48 | - */ |
|
| 46 | + /** |
|
| 47 | + * @var ConvertHelper_ThrowableInfo |
|
| 48 | + */ |
|
| 49 | 49 | protected $previous; |
| 50 | 50 | |
| 51 | - /** |
|
| 52 | - * @var string |
|
| 53 | - */ |
|
| 51 | + /** |
|
| 52 | + * @var string |
|
| 53 | + */ |
|
| 54 | 54 | protected $referer = ''; |
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * @var DateTime |
|
| 58 | - */ |
|
| 56 | + /** |
|
| 57 | + * @var DateTime |
|
| 58 | + */ |
|
| 59 | 59 | protected $date; |
| 60 | 60 | |
| 61 | - /** |
|
| 62 | - * @var string |
|
| 63 | - */ |
|
| 61 | + /** |
|
| 62 | + * @var string |
|
| 63 | + */ |
|
| 64 | 64 | protected $context = self::CONTEXT_WEB; |
| 65 | 65 | |
| 66 | 66 | /** |
@@ -114,16 +114,16 @@ discard block |
||
| 114 | 114 | return isset($this->previous); |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - /** |
|
| 118 | - * Retrieves the information on the previous exception. |
|
| 119 | - * |
|
| 120 | - * NOTE: Throws an exception if there is no previous |
|
| 121 | - * exception. Use hasPrevious() first to avoid this. |
|
| 122 | - * |
|
| 123 | - * @throws ConvertHelper_Exception |
|
| 124 | - * @return ConvertHelper_ThrowableInfo |
|
| 125 | - * @see ConvertHelper_ThrowableInfo::ERROR_NO_PREVIOUS_EXCEPTION |
|
| 126 | - */ |
|
| 117 | + /** |
|
| 118 | + * Retrieves the information on the previous exception. |
|
| 119 | + * |
|
| 120 | + * NOTE: Throws an exception if there is no previous |
|
| 121 | + * exception. Use hasPrevious() first to avoid this. |
|
| 122 | + * |
|
| 123 | + * @throws ConvertHelper_Exception |
|
| 124 | + * @return ConvertHelper_ThrowableInfo |
|
| 125 | + * @see ConvertHelper_ThrowableInfo::ERROR_NO_PREVIOUS_EXCEPTION |
|
| 126 | + */ |
|
| 127 | 127 | public function getPrevious() : ConvertHelper_ThrowableInfo |
| 128 | 128 | { |
| 129 | 129 | if(isset($this->previous)) { |
@@ -142,9 +142,9 @@ discard block |
||
| 142 | 142 | return !empty($this->code); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - /** |
|
| 146 | - * Improved textonly exception trace. |
|
| 147 | - */ |
|
| 145 | + /** |
|
| 146 | + * Improved textonly exception trace. |
|
| 147 | + */ |
|
| 148 | 148 | public function toString() : string |
| 149 | 149 | { |
| 150 | 150 | $calls = $this->getCalls(); |
@@ -172,73 +172,73 @@ discard block |
||
| 172 | 172 | return $string; |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - /** |
|
| 176 | - * Retrieves the URL of the page in which the exception |
|
| 177 | - * was thrown, if applicable: in CLI context, this will |
|
| 178 | - * return an empty string. |
|
| 179 | - * |
|
| 180 | - * @return string |
|
| 181 | - */ |
|
| 175 | + /** |
|
| 176 | + * Retrieves the URL of the page in which the exception |
|
| 177 | + * was thrown, if applicable: in CLI context, this will |
|
| 178 | + * return an empty string. |
|
| 179 | + * |
|
| 180 | + * @return string |
|
| 181 | + */ |
|
| 182 | 182 | public function getReferer() : string |
| 183 | 183 | { |
| 184 | 184 | return $this->referer; |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - /** |
|
| 188 | - * Whether the exception occurred in a command line context. |
|
| 189 | - * @return bool |
|
| 190 | - */ |
|
| 187 | + /** |
|
| 188 | + * Whether the exception occurred in a command line context. |
|
| 189 | + * @return bool |
|
| 190 | + */ |
|
| 191 | 191 | public function isCommandLine() : bool |
| 192 | 192 | { |
| 193 | 193 | return $this->getContext() === self::CONTEXT_COMMAND_LINE; |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | - /** |
|
| 197 | - * Whether the exception occurred during an http request. |
|
| 198 | - * @return bool |
|
| 199 | - */ |
|
| 196 | + /** |
|
| 197 | + * Whether the exception occurred during an http request. |
|
| 198 | + * @return bool |
|
| 199 | + */ |
|
| 200 | 200 | public function isWebRequest() : bool |
| 201 | 201 | { |
| 202 | 202 | return $this->getContext() === self::CONTEXT_WEB; |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - /** |
|
| 206 | - * Retrieves the context identifier, i.e. if the exception |
|
| 207 | - * occurred in a command line context or regular web request. |
|
| 208 | - * |
|
| 209 | - * @return string |
|
| 210 | - * |
|
| 211 | - * @see ConvertHelper_ThrowableInfo::isCommandLine() |
|
| 212 | - * @see ConvertHelper_ThrowableInfo::isWebRequest() |
|
| 213 | - * @see ConvertHelper_ThrowableInfo::CONTEXT_COMMAND_LINE |
|
| 214 | - * @see ConvertHelper_ThrowableInfo::CONTEXT_WEB |
|
| 215 | - */ |
|
| 205 | + /** |
|
| 206 | + * Retrieves the context identifier, i.e. if the exception |
|
| 207 | + * occurred in a command line context or regular web request. |
|
| 208 | + * |
|
| 209 | + * @return string |
|
| 210 | + * |
|
| 211 | + * @see ConvertHelper_ThrowableInfo::isCommandLine() |
|
| 212 | + * @see ConvertHelper_ThrowableInfo::isWebRequest() |
|
| 213 | + * @see ConvertHelper_ThrowableInfo::CONTEXT_COMMAND_LINE |
|
| 214 | + * @see ConvertHelper_ThrowableInfo::CONTEXT_WEB |
|
| 215 | + */ |
|
| 216 | 216 | public function getContext() : string |
| 217 | 217 | { |
| 218 | 218 | return $this->context; |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - /** |
|
| 222 | - * Retrieves the date of the exception, and approximate time: |
|
| 223 | - * since exceptions do not store time, this is captured the |
|
| 224 | - * moment the ThrowableInfo is created. |
|
| 225 | - * |
|
| 226 | - * @return DateTime |
|
| 227 | - */ |
|
| 221 | + /** |
|
| 222 | + * Retrieves the date of the exception, and approximate time: |
|
| 223 | + * since exceptions do not store time, this is captured the |
|
| 224 | + * moment the ThrowableInfo is created. |
|
| 225 | + * |
|
| 226 | + * @return DateTime |
|
| 227 | + */ |
|
| 228 | 228 | public function getDate() : DateTime |
| 229 | 229 | { |
| 230 | 230 | return $this->date; |
| 231 | 231 | } |
| 232 | 232 | |
| 233 | - /** |
|
| 234 | - * Serializes all information on the exception to an |
|
| 235 | - * associative array. This can be saved (file, database, |
|
| 236 | - * session...), and later be restored into a throwable |
|
| 237 | - * info instance using the fromSerialized() method. |
|
| 238 | - * |
|
| 239 | - * @return array<string,mixed> |
|
| 240 | - * @see ConvertHelper_ThrowableInfo::fromSerialized() |
|
| 241 | - */ |
|
| 233 | + /** |
|
| 234 | + * Serializes all information on the exception to an |
|
| 235 | + * associative array. This can be saved (file, database, |
|
| 236 | + * session...), and later be restored into a throwable |
|
| 237 | + * info instance using the fromSerialized() method. |
|
| 238 | + * |
|
| 239 | + * @return array<string,mixed> |
|
| 240 | + * @see ConvertHelper_ThrowableInfo::fromSerialized() |
|
| 241 | + */ |
|
| 242 | 242 | public function serialize() : array |
| 243 | 243 | { |
| 244 | 244 | $result = array( |
@@ -265,24 +265,24 @@ discard block |
||
| 265 | 265 | return $result; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - /** |
|
| 269 | - * Sets the maximum folder depth to show in the |
|
| 270 | - * file paths, to avoid them being too long. |
|
| 271 | - * |
|
| 272 | - * @param int $depth |
|
| 273 | - * @return ConvertHelper_ThrowableInfo |
|
| 274 | - */ |
|
| 268 | + /** |
|
| 269 | + * Sets the maximum folder depth to show in the |
|
| 270 | + * file paths, to avoid them being too long. |
|
| 271 | + * |
|
| 272 | + * @param int $depth |
|
| 273 | + * @return ConvertHelper_ThrowableInfo |
|
| 274 | + */ |
|
| 275 | 275 | public function setFolderDepth(int $depth) : ConvertHelper_ThrowableInfo |
| 276 | 276 | { |
| 277 | 277 | return $this->setOption('folder-depth', $depth); |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - /** |
|
| 281 | - * Retrieves the current folder depth option value. |
|
| 282 | - * |
|
| 283 | - * @return int |
|
| 284 | - * @see ConvertHelper_ThrowableInfo::setFolderDepth() |
|
| 285 | - */ |
|
| 280 | + /** |
|
| 281 | + * Retrieves the current folder depth option value. |
|
| 282 | + * |
|
| 283 | + * @return int |
|
| 284 | + * @see ConvertHelper_ThrowableInfo::setFolderDepth() |
|
| 285 | + */ |
|
| 286 | 286 | public function getFolderDepth() : int |
| 287 | 287 | { |
| 288 | 288 | $depth = $this->getOption('folder-depth'); |
@@ -293,19 +293,19 @@ discard block |
||
| 293 | 293 | return 2; |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | - /** |
|
| 297 | - * Retrieves all function calls that led to the error. |
|
| 298 | - * @return ConvertHelper_ThrowableInfo_Call[] |
|
| 299 | - */ |
|
| 296 | + /** |
|
| 297 | + * Retrieves all function calls that led to the error. |
|
| 298 | + * @return ConvertHelper_ThrowableInfo_Call[] |
|
| 299 | + */ |
|
| 300 | 300 | public function getCalls() |
| 301 | 301 | { |
| 302 | 302 | return $this->calls; |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - /** |
|
| 306 | - * Returns the amount of function and method calls in the stack trace. |
|
| 307 | - * @return int |
|
| 308 | - */ |
|
| 305 | + /** |
|
| 306 | + * Returns the amount of function and method calls in the stack trace. |
|
| 307 | + * @return int |
|
| 308 | + */ |
|
| 309 | 309 | public function countCalls() : int |
| 310 | 310 | { |
| 311 | 311 | return $this->callsCount; |
@@ -71,9 +71,9 @@ discard block |
||
| 71 | 71 | ) |
| 72 | 72 | ); |
| 73 | 73 | |
| 74 | - /** |
|
| 75 | - * @var string[] |
|
| 76 | - */ |
|
| 74 | + /** |
|
| 75 | + * @var string[] |
|
| 76 | + */ |
|
| 77 | 77 | protected $selected = array(); |
| 78 | 78 | |
| 79 | 79 | public function convert(string $string) : string |
@@ -83,16 +83,16 @@ discard block |
||
| 83 | 83 | return str_replace(array_keys($chars), array_values($chars), $string); |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - /** |
|
| 87 | - * Selects a character set to replace. Can be called |
|
| 88 | - * several times to add additional sets to the collection. |
|
| 89 | - * |
|
| 90 | - * @param string $type See the <code>CHAR_XXX</code> constants. |
|
| 91 | - * @return ConvertHelper_HiddenConverter |
|
| 92 | - * |
|
| 93 | - * @see ConvertHelper_HiddenConverter::CHARS_CONTROL |
|
| 94 | - * @see ConvertHelper_HiddenConverter::CHARS_WHITESPACE |
|
| 95 | - */ |
|
| 86 | + /** |
|
| 87 | + * Selects a character set to replace. Can be called |
|
| 88 | + * several times to add additional sets to the collection. |
|
| 89 | + * |
|
| 90 | + * @param string $type See the <code>CHAR_XXX</code> constants. |
|
| 91 | + * @return ConvertHelper_HiddenConverter |
|
| 92 | + * |
|
| 93 | + * @see ConvertHelper_HiddenConverter::CHARS_CONTROL |
|
| 94 | + * @see ConvertHelper_HiddenConverter::CHARS_WHITESPACE |
|
| 95 | + */ |
|
| 96 | 96 | public function selectCharacters(string $type) : ConvertHelper_HiddenConverter |
| 97 | 97 | { |
| 98 | 98 | if(!in_array($type, $this->selected)) { |
@@ -102,11 +102,11 @@ discard block |
||
| 102 | 102 | return $this; |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - /** |
|
| 106 | - * Resolves the list of characters to make visible. |
|
| 107 | - * |
|
| 108 | - * @return string[] |
|
| 109 | - */ |
|
| 105 | + /** |
|
| 106 | + * Resolves the list of characters to make visible. |
|
| 107 | + * |
|
| 108 | + * @return string[] |
|
| 109 | + */ |
|
| 110 | 110 | protected function resolveSelection() : array |
| 111 | 111 | { |
| 112 | 112 | $selected = $this->selected; |
@@ -30,17 +30,17 @@ discard block |
||
| 30 | 30 | const BASE_10 = 1000; |
| 31 | 31 | const BASE_2 = 1024; |
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * @var array<string,ConvertHelper_StorageSizeEnum_Size> |
|
| 35 | - */ |
|
| 33 | + /** |
|
| 34 | + * @var array<string,ConvertHelper_StorageSizeEnum_Size> |
|
| 35 | + */ |
|
| 36 | 36 | protected static $sizes = array(); |
| 37 | 37 | |
| 38 | - /** |
|
| 39 | - * Initializes the supported unit notations, and |
|
| 40 | - * how they are supposed to be calculated. |
|
| 41 | - * |
|
| 42 | - * @see ConvertHelper_SizeNotation::parseSize() |
|
| 43 | - */ |
|
| 38 | + /** |
|
| 39 | + * Initializes the supported unit notations, and |
|
| 40 | + * how they are supposed to be calculated. |
|
| 41 | + * |
|
| 42 | + * @see ConvertHelper_SizeNotation::parseSize() |
|
| 43 | + */ |
|
| 44 | 44 | protected static function init() : void |
| 45 | 45 | { |
| 46 | 46 | if(!empty(self::$sizes)) { |
@@ -67,28 +67,28 @@ discard block |
||
| 67 | 67 | } |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - /** |
|
| 71 | - * Called whenever the application locale is changed, |
|
| 72 | - * to reset the size definitions so the labels get |
|
| 73 | - * translated to the new locale. |
|
| 74 | - */ |
|
| 70 | + /** |
|
| 71 | + * Called whenever the application locale is changed, |
|
| 72 | + * to reset the size definitions so the labels get |
|
| 73 | + * translated to the new locale. |
|
| 74 | + */ |
|
| 75 | 75 | public static function handle_localeChanged() : void |
| 76 | 76 | { |
| 77 | 77 | self::$sizes = array(); |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | - /** |
|
| 81 | - * Adds a storage size to the internal collection. |
|
| 82 | - * |
|
| 83 | - * @param string $name The lowercase size name, e.g. "kb", "mib" |
|
| 84 | - * @param int $base This defines how many bytes there are in a kilobyte, to differentiate with the two common way to calculate sizes: base 10 or base 2. See the Wikipedia link for more details. |
|
| 85 | - * @param int $exponent The multiplier of the base to get the byte value |
|
| 86 | - * @param string $suffix The localized short suffix, e.g. "KB", "MiB" |
|
| 87 | - * @param string $singular The localized singular label of the size, e.g. "Kilobyte". |
|
| 88 | - * @param string $plural The localized plural label of the size, e.g. "Kilobytes". |
|
| 89 | - * |
|
| 90 | - * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
| 91 | - */ |
|
| 80 | + /** |
|
| 81 | + * Adds a storage size to the internal collection. |
|
| 82 | + * |
|
| 83 | + * @param string $name The lowercase size name, e.g. "kb", "mib" |
|
| 84 | + * @param int $base This defines how many bytes there are in a kilobyte, to differentiate with the two common way to calculate sizes: base 10 or base 2. See the Wikipedia link for more details. |
|
| 85 | + * @param int $exponent The multiplier of the base to get the byte value |
|
| 86 | + * @param string $suffix The localized short suffix, e.g. "KB", "MiB" |
|
| 87 | + * @param string $singular The localized singular label of the size, e.g. "Kilobyte". |
|
| 88 | + * @param string $plural The localized plural label of the size, e.g. "Kilobytes". |
|
| 89 | + * |
|
| 90 | + * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
| 91 | + */ |
|
| 92 | 92 | protected static function addSize(string $name, int $base, int $exponent, string $suffix, string $singular, string $plural) : void |
| 93 | 93 | { |
| 94 | 94 | self::$sizes[$name] = new ConvertHelper_StorageSizeEnum_Size( |
@@ -101,11 +101,11 @@ discard block |
||
| 101 | 101 | ); |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - /** |
|
| 105 | - * Retrieves all known sizes. |
|
| 106 | - * |
|
| 107 | - * @return ConvertHelper_StorageSizeEnum_Size[] |
|
| 108 | - */ |
|
| 104 | + /** |
|
| 105 | + * Retrieves all known sizes. |
|
| 106 | + * |
|
| 107 | + * @return ConvertHelper_StorageSizeEnum_Size[] |
|
| 108 | + */ |
|
| 109 | 109 | public static function getSizes() : array |
| 110 | 110 | { |
| 111 | 111 | self::init(); |
@@ -113,15 +113,15 @@ discard block |
||
| 113 | 113 | return array_values(self::$sizes); |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - /** |
|
| 117 | - * Retrieves a size definition instance by its name. |
|
| 118 | - * |
|
| 119 | - * @param string $name Case-insensitive. For example "kb", "MiB"... |
|
| 120 | - * @throws ConvertHelper_Exception |
|
| 121 | - * @return ConvertHelper_StorageSizeEnum_Size |
|
| 122 | - * |
|
| 123 | - * @see ConvertHelper_StorageSizeEnum::ERROR_UNKNOWN_UNIT_NAME |
|
| 124 | - */ |
|
| 116 | + /** |
|
| 117 | + * Retrieves a size definition instance by its name. |
|
| 118 | + * |
|
| 119 | + * @param string $name Case-insensitive. For example "kb", "MiB"... |
|
| 120 | + * @throws ConvertHelper_Exception |
|
| 121 | + * @return ConvertHelper_StorageSizeEnum_Size |
|
| 122 | + * |
|
| 123 | + * @see ConvertHelper_StorageSizeEnum::ERROR_UNKNOWN_UNIT_NAME |
|
| 124 | + */ |
|
| 125 | 125 | public static function getSizeByName(string $name) : ConvertHelper_StorageSizeEnum_Size |
| 126 | 126 | { |
| 127 | 127 | self::init(); |
@@ -143,10 +143,10 @@ discard block |
||
| 143 | 143 | ); |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - /** |
|
| 147 | - * Retrieves a list of all size names, e.g. "mb", "kib" (lowercase). |
|
| 148 | - * @return string[] |
|
| 149 | - */ |
|
| 146 | + /** |
|
| 147 | + * Retrieves a list of all size names, e.g. "mb", "kib" (lowercase). |
|
| 148 | + * @return string[] |
|
| 149 | + */ |
|
| 150 | 150 | public static function getSizeNames() : array |
| 151 | 151 | { |
| 152 | 152 | self::init(); |
@@ -154,16 +154,16 @@ discard block |
||
| 154 | 154 | return array_keys(self::$sizes); |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - /** |
|
| 158 | - * Retrieves all available storage sizes for the specified |
|
| 159 | - * base value. |
|
| 160 | - * |
|
| 161 | - * @param int $base |
|
| 162 | - * @return ConvertHelper_StorageSizeEnum_Size[] |
|
| 163 | - * |
|
| 164 | - * @see ConvertHelper_StorageSizeEnum::BASE_10 |
|
| 165 | - * @see ConvertHelper_StorageSizeEnum::BASE_2 |
|
| 166 | - */ |
|
| 157 | + /** |
|
| 158 | + * Retrieves all available storage sizes for the specified |
|
| 159 | + * base value. |
|
| 160 | + * |
|
| 161 | + * @param int $base |
|
| 162 | + * @return ConvertHelper_StorageSizeEnum_Size[] |
|
| 163 | + * |
|
| 164 | + * @see ConvertHelper_StorageSizeEnum::BASE_10 |
|
| 165 | + * @see ConvertHelper_StorageSizeEnum::BASE_2 |
|
| 166 | + */ |
|
| 167 | 167 | public static function getSizesByBase(int $base) : array |
| 168 | 168 | { |
| 169 | 169 | self::init(); |