Commit 8eb96909 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #3334 from GrahamForks/compiled

Correctly deal with the compiled file
parents 39107a78 0d08fcf2
......@@ -27,9 +27,11 @@ require __DIR__.'/../vendor/autoload.php';
|
*/
$compiledPath = __DIR__.'/../vendor/compiled.php';
if (file_exists($compiledPath))
if (file_exists($compiledPath = __DIR__.'/../vendor/compiled.php'))
{
require $compiledPath;
}
elseif (file_exists($compiledPath = __DIR__.'/../storage/framework/compiled.php'))
{
require $compiledPath;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment