Dependencies
This commit is contained in:
9
aldarien/config/app/Helper/functions.php
Normal file
9
aldarien/config/app/Helper/functions.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
function config($name = null, $value = null) {
|
||||
if ($value == null) {
|
||||
return App\Contract\Config::get($name);
|
||||
} else {
|
||||
return App\Contract\Config::set($name, $value);
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user