@@ -50,8 +50,7 @@ |
||
| 50 | 50 | * Class Jsonable |
| 51 | 51 | * @package Platine\Stdlib\Contract |
| 52 | 52 | */ |
| 53 | -interface Jsonable |
|
| 54 | -{ |
|
| 53 | +interface Jsonable { |
|
| 55 | 54 | |
| 56 | 55 | /** |
| 57 | 56 | * Convert the instance to JSON string |
@@ -50,8 +50,7 @@ |
||
| 50 | 50 | * Class Arrayable |
| 51 | 51 | * @package Platine\Stdlib\Contract |
| 52 | 52 | */ |
| 53 | -interface Arrayable |
|
| 54 | -{ |
|
| 53 | +interface Arrayable { |
|
| 55 | 54 | |
| 56 | 55 | /** |
| 57 | 56 | * Convert the instance to array |
@@ -50,8 +50,7 @@ |
||
| 50 | 50 | * Class ConfigurationInterface |
| 51 | 51 | * @package Platine\Stdlib\Contract |
| 52 | 52 | */ |
| 53 | -interface ConfigurationInterface |
|
| 54 | -{ |
|
| 53 | +interface ConfigurationInterface { |
|
| 55 | 54 | |
| 56 | 55 | /** |
| 57 | 56 | * Create new instance |
@@ -52,8 +52,7 @@ |
||
| 52 | 52 | * Class Path |
| 53 | 53 | * @package Platine\Stdlib\Helper |
| 54 | 54 | */ |
| 55 | -class Path |
|
| 56 | -{ |
|
| 55 | +class Path { |
|
| 57 | 56 | |
| 58 | 57 | /** |
| 59 | 58 | * normalize the path by replace the "\" to "/" |
@@ -50,8 +50,7 @@ |
||
| 50 | 50 | * Class Env |
| 51 | 51 | * @package Platine\Stdlib\Helper |
| 52 | 52 | */ |
| 53 | -class Env |
|
| 54 | -{ |
|
| 53 | +class Env { |
|
| 55 | 54 | |
| 56 | 55 | /** |
| 57 | 56 | * Whether the application is running on CLI |
@@ -50,8 +50,7 @@ |
||
| 50 | 50 | * Class Xml |
| 51 | 51 | * @package Platine\Stdlib\Helper |
| 52 | 52 | */ |
| 53 | -class Xml |
|
| 54 | -{ |
|
| 53 | +class Xml { |
|
| 55 | 54 | |
| 56 | 55 | /** |
| 57 | 56 | * Transform an XML string to array |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | return self::$classLoader; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - $autoloadFunctions = (array)spl_autoload_functions(); |
|
| 77 | + $autoloadFunctions = (array) spl_autoload_functions(); |
|
| 78 | 78 | foreach ($autoloadFunctions as $loader) { |
| 79 | 79 | if (is_array($loader) && isset($loader[0])) { |
| 80 | 80 | $composerLoader = $loader[0]; |
@@ -53,8 +53,7 @@ |
||
| 53 | 53 | * Class Composer |
| 54 | 54 | * @package Platine\Stdlib\Helper |
| 55 | 55 | */ |
| 56 | -class Composer |
|
| 57 | -{ |
|
| 56 | +class Composer { |
|
| 58 | 57 | |
| 59 | 58 | /** |
| 60 | 59 | * The composer class loader instance |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | if (array_key_exists('unit', $matches)) { |
| 68 | 68 | $unit = strtoupper($matches['unit']); |
| 69 | 69 | } |
| 70 | - return (int)(floatval($matches['size']) * pow(1024, $units[$unit])); |
|
| 70 | + return (int) (floatval($matches['size']) * pow(1024, $units[$unit])); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -50,8 +50,7 @@ |
||
| 50 | 50 | * Class Unit |
| 51 | 51 | * @package Platine\Stdlib\Helper |
| 52 | 52 | */ |
| 53 | -class Unit |
|
| 54 | -{ |
|
| 53 | +class Unit { |
|
| 55 | 54 | |
| 56 | 55 | /** |
| 57 | 56 | * Convert the size like 4G, 7T, 19B to byte |
@@ -50,8 +50,7 @@ |
||
| 50 | 50 | * Class Str |
| 51 | 51 | * @package Platine\Stdlib\Helper |
| 52 | 52 | */ |
| 53 | -class Str |
|
| 54 | -{ |
|
| 53 | +class Str { |
|
| 55 | 54 | |
| 56 | 55 | /** |
| 57 | 56 | * The cache of snake-cased words. |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | $value = str_replace($val, $key, $value); |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - return (string)preg_replace('/[^\x20-\x7E]/u', '', $value); |
|
| 94 | + return (string) preg_replace('/[^\x20-\x7E]/u', '', $value); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | // pattern such as "library/*", making any string check convenient. |
| 259 | 259 | $cleanQuoted = str_replace('\*', '.*', $quoted); |
| 260 | 260 | |
| 261 | - return (bool)preg_match('#^' . $cleanQuoted . '\z#', $value); |
|
| 261 | + return (bool) preg_match('#^' . $cleanQuoted . '\z#', $value); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | /** |
@@ -570,7 +570,7 @@ discard block |
||
| 570 | 570 | */ |
| 571 | 571 | public static function isAscii(string $value): bool |
| 572 | 572 | { |
| 573 | - return (bool)!preg_match('/[^\x00-\x7F]/S', $value); |
|
| 573 | + return (bool) !preg_match('/[^\x00-\x7F]/S', $value); |
|
| 574 | 574 | } |
| 575 | 575 | |
| 576 | 576 | /** |
@@ -603,7 +603,7 @@ discard block |
||
| 603 | 603 | { |
| 604 | 604 | $bytes = random_bytes((int) ceil($length / 2)); |
| 605 | 605 | |
| 606 | - return (string)substr(bin2hex($bytes), 0, $length); |
|
| 606 | + return (string) substr(bin2hex($bytes), 0, $length); |
|
| 607 | 607 | } |
| 608 | 608 | |
| 609 | 609 | /** |
@@ -668,7 +668,7 @@ discard block |
||
| 668 | 668 | $pool = '2345679ACDEFHJKLMNPRSTUVWXYZ'; |
| 669 | 669 | break; |
| 670 | 670 | default: |
| 671 | - $pool = (string)$type; |
|
| 671 | + $pool = (string) $type; |
|
| 672 | 672 | $utf8 = !self::isAscii($pool); |
| 673 | 673 | break; |
| 674 | 674 | } |
@@ -772,7 +772,7 @@ discard block |
||
| 772 | 772 | $ignoreKeys = $firstKey === 0; |
| 773 | 773 | |
| 774 | 774 | return sprintf('[%s]', implode(', ', array_map( |
| 775 | - function ($key, $value) use ($ignoreKeys) { |
|
| 775 | + function($key, $value) use ($ignoreKeys) { |
|
| 776 | 776 | return $ignoreKeys |
| 777 | 777 | ? self::stringify($value) |
| 778 | 778 | : sprintf( |