Skip to content

Instantly share code, notes, and snippets.

View mdurao's full-sized avatar

Miguel Durão mdurao

View GitHub Profile
@mdurao
mdurao / start.php
Last active August 29, 2015 13:57
Laravel Environment Detection
$env = $app->detectEnvironment(function () {
return getenv('LARAVEL_ENV') ? : 'local';
});