Skip to content

Instantly share code, notes, and snippets.

@enoonan
Last active August 29, 2015 13:59
Show Gist options
  • Save enoonan/10744298 to your computer and use it in GitHub Desktop.
Save enoonan/10744298 to your computer and use it in GitHub Desktop.
Laravel Env Detection
<?php
// ignore this file in vcs
return 'local';
$env = $app->detectEnvironment(function() {
$env = include "environment.php";
return is_string($env) ? $env : 'production';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment