summaryrefslogtreecommitdiff
path: root/src/helpers.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers.php')
-rw-r--r--src/helpers.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/helpers.php b/src/helpers.php
index 5a48498a..c3c727ec 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)