Remove old file, fix autoloading issues

This commit is contained in:
Dane Everitt 2017-04-15 12:13:29 -04:00
parent 96a75030ec
commit 2770e6d1b4
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 1 additions and 213 deletions

View file

@ -14,21 +14,4 @@ define('LARAVEL_START', microtime(true));
|
*/
require __DIR__ . '/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
| Include The Compiled Class File
|--------------------------------------------------------------------------
|
| To dramatically increase your application's performance, you may use a
| compiled class file which contains all of the classes commonly used
| by a request. The Artisan "optimize" is used to create this file.
|
*/
$compiledPath = __DIR__ . '/cache/compiled.php';
if (file_exists($compiledPath)) {
require $compiledPath;
}
require __DIR__.'/../vendor/autoload.php';