Skip to content

Commit eebfe94

Browse files
committed
refactor: Remove a função config não utilizada no arquivo TestHelpers.php
1 parent 42e8856 commit eebfe94

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/TestHelpers.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,3 @@ function env(string $key, mixed $default = null): mixed
66
return $_ENV[$key] ?? getenv($key) ?: $default;
77
}
88
}
9-
10-
if (!function_exists('config')) {
11-
function config(string $key, mixed $default = null): mixed
12-
{
13-
static $config = [];
14-
15-
return $config[$key] ?? $default;
16-
}
17-
}

0 commit comments

Comments
 (0)