Browse Source

Make app path stream safe

Sammy Kaye Powers 6 years ago
parent
commit
6125693845
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__)
 );
 
 /*