From 8ac33bb54fd127e78e96e16f3adb8cc29db4aa0f Mon Sep 17 00:00:00 2001 From: Brandon Parise Date: Tue, 1 Dec 2015 09:58:16 -0500 Subject: [PATCH] Fixing path to the compiled class map - fixes #1608 --- bootstrap/autoload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php index 44247d105..b980622d7 100644 --- a/bootstrap/autoload.php +++ b/bootstrap/autoload.php @@ -47,7 +47,7 @@ require __DIR__.'/../vendor/autoload.php'; | */ -$compiledPath = __DIR__.'/../vendor/compiled.php'; +$compiledPath = __DIR__.'/../storage/framework/compiled.php'; if (file_exists($compiledPath)) { require $compiledPath;