@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | namespace { |
| 6 | 6 | use Hyde\Foundation\HydeKernel; |
| 7 | 7 | |
| 8 | - if (! function_exists('hyde')) { |
|
| 8 | + if (!function_exists('hyde')) { |
|
| 9 | 9 | /** |
| 10 | 10 | * Get the available HydeKernel instance. |
| 11 | 11 | */ |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | } |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | - if (! function_exists('unslash')) { |
|
| 18 | + if (!function_exists('unslash')) { |
|
| 19 | 19 | /** |
| 20 | 20 | * Remove trailing slashes from the start and end of a string. |
| 21 | 21 | */ |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | use Illuminate\Contracts\Support\Arrayable; |
| 32 | 32 | use Symfony\Component\Yaml\Yaml; |
| 33 | 33 | |
| 34 | - if (! function_exists('\Hyde\hyde')) { |
|
| 34 | + if (!function_exists('\Hyde\hyde')) { |
|
| 35 | 35 | /** |
| 36 | 36 | * Get the available HydeKernel instance. |
| 37 | 37 | */ |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | - if (! function_exists('\Hyde\unslash')) { |
|
| 44 | + if (!function_exists('\Hyde\unslash')) { |
|
| 45 | 45 | /** |
| 46 | 46 | * Remove trailing slashes from the start and end of a string. |
| 47 | 47 | */ |
@@ -51,70 +51,70 @@ discard block |
||
| 51 | 51 | } |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - if (! function_exists('\Hyde\make_title')) { |
|
| 54 | + if (!function_exists('\Hyde\make_title')) { |
|
| 55 | 55 | function make_title(string $value): string |
| 56 | 56 | { |
| 57 | 57 | return hyde()->makeTitle($value); |
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - if (! function_exists('\Hyde\normalize_newlines')) { |
|
| 61 | + if (!function_exists('\Hyde\normalize_newlines')) { |
|
| 62 | 62 | function normalize_newlines(string $string): string |
| 63 | 63 | { |
| 64 | 64 | return hyde()->normalizeNewlines($string); |
| 65 | 65 | } |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - if (! function_exists('\Hyde\strip_newlines')) { |
|
| 68 | + if (!function_exists('\Hyde\strip_newlines')) { |
|
| 69 | 69 | function strip_newlines(string $string): string |
| 70 | 70 | { |
| 71 | 71 | return hyde()->stripNewlines($string); |
| 72 | 72 | } |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - if (! function_exists('\Hyde\trim_slashes')) { |
|
| 75 | + if (!function_exists('\Hyde\trim_slashes')) { |
|
| 76 | 76 | function trim_slashes(string $string): string |
| 77 | 77 | { |
| 78 | 78 | return hyde()->trimSlashes($string); |
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - if (! function_exists('\Hyde\evaluate_arrayable')) { |
|
| 82 | + if (!function_exists('\Hyde\evaluate_arrayable')) { |
|
| 83 | 83 | function evaluate_arrayable(array|Arrayable $array): array |
| 84 | 84 | { |
| 85 | 85 | return $array instanceof Arrayable ? $array->toArray() : $array; |
| 86 | 86 | } |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - if (! function_exists('\Hyde\yaml_encode')) { |
|
| 89 | + if (!function_exists('\Hyde\yaml_encode')) { |
|
| 90 | 90 | function yaml_encode(mixed $input, int $inline = 2, int $indent = 4, int $flags = 0): string |
| 91 | 91 | { |
| 92 | 92 | return Yaml::dump($input instanceof Arrayable ? $input->toArray() : $input, $inline, $indent, $flags); |
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if (! function_exists('\Hyde\yaml_decode')) { |
|
| 96 | + if (!function_exists('\Hyde\yaml_decode')) { |
|
| 97 | 97 | function yaml_decode(string $input, int $flags = 0): mixed |
| 98 | 98 | { |
| 99 | 99 | return Yaml::parse($input, $flags); |
| 100 | 100 | } |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | - if (! function_exists('\Hyde\path_join')) { |
|
| 103 | + if (!function_exists('\Hyde\path_join')) { |
|
| 104 | 104 | function path_join(string $directory, string ...$paths): string |
| 105 | 105 | { |
| 106 | 106 | return implode('/', array_merge([$directory], $paths)); |
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - if (! function_exists('\Hyde\system_path_join')) { |
|
| 110 | + if (!function_exists('\Hyde\system_path_join')) { |
|
| 111 | 111 | function system_path_join(string $directory, string ...$paths): string |
| 112 | 112 | { |
| 113 | 113 | return implode(DIRECTORY_SEPARATOR, array_merge([$directory], $paths)); |
| 114 | 114 | } |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | - if (! function_exists('\Hyde\normalize_slashes')) { |
|
| 117 | + if (!function_exists('\Hyde\normalize_slashes')) { |
|
| 118 | 118 | function normalize_slashes(string $string): string |
| 119 | 119 | { |
| 120 | 120 | return str_replace('\\', '/', $string); |