Browse Source

Merge pull request #4777 from SammyK/make-app-path-stream-safe

[5.7] Make app path stream safe
Taylor Otwell 5 years ago
parent
commit
faaabe1cef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bootstrap/app.php

+ 1 - 1
bootstrap/app.php

@@ -12,7 +12,7 @@
 */
 
 $app = new Illuminate\Foundation\Application(
-    realpath(__DIR__.'/../')
+    dirname(__DIR__)
 );
 
 /*