summaryrefslogtreecommitdiff
path: root/src/helpers.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-01-14 01:45:23 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2018-01-14 01:45:23 +0100
commite0b58d2a7d5aac5019a666ea79d3910448ba9c56 (patch)
treec4f439ab99ec8d6f537286feaa0118ca6af86840 /src/helpers.php
parentddadaada9dc1bd288c82da840a4c4f02767d3e43 (diff)
Added illuminate/support and Fluent Interface to Config
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)