Update for optimize command.

This commit is contained in:
Taylor Otwell
2013-03-15 22:22:11 -05:00
parent 0c0b68e395
commit 13d7adb38f
4 changed files with 37 additions and 0 deletions

View File

@@ -14,6 +14,23 @@
require __DIR__.'/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any our classes "manually". Feels great to relax.
|
*/
if (file_exists($compiled = __DIR__.'/compiled.php'))
{
require $compiled;
}
/*
|--------------------------------------------------------------------------
| Register The Laravel Auto Loader