for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Gets the value of an environment variable.
*
* @param string $name The value name
* @return mixed
*/
if (!function_exists('env')) {
function env($name)
{
return Env::get($name);
}