Reformat code.

This commit is contained in:
James Cole
2024-03-10 06:17:31 +01:00
parent c9ce5df74b
commit 1961487055
21 changed files with 572 additions and 571 deletions

View File

@@ -36,12 +36,12 @@ bcscale(12);
if (!function_exists('envNonEmpty')) {
/**
* @param string $key
* @param string|int|bool|null $default
* @param string $key
* @param string|int|bool|null $default
*
* @return mixed|null
*/
function envNonEmpty(string $key, string|int|bool|null $default = null)
function envNonEmpty(string $key, string | int | bool | null $default = null)
{
$result = env($key, $default);
if ('' === $result) {