diff options
Diffstat (limited to 'src/helpers.php')
-rw-r--r-- | src/helpers.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/helpers.php b/src/helpers.php index 3f118bf3..339936e3 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -67,21 +67,6 @@ function config_path($path = '') /** * @param string $key * @param mixed $default - * @return mixed - */ -function env($key, $default = null) -{ - $value = getenv($key); - if ($value === false) { - return $default; - } - - return $value; -} - -/** - * @param string $key - * @param mixed $default * @return Request|mixed */ function request($key = null, $default = null) |