We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2b887b commit 7f62873Copy full SHA for 7f62873
src/Installers/LaravelInstaller.php
@@ -141,9 +141,10 @@ protected function configureFiles()
141
$_ENV[\'APP_BASE_PATH\'] ?? dirname(__DIR__)
142
);' => 'use App\Application;
143
144
-$app = new Illuminate\Foundation\Application(
+$app = new Application(
145
146
);
147
+
148
$app->useAppPath($app->basePath(\'src/App\'));',
149
'App\Http\Kernel::class' => 'App\HttpKernel::class',
150
'App\Console\Kernel::class' => 'App\ConsoleKernel::class',
@@ -204,4 +205,4 @@ protected function configurePhpUnitXmlFile()
204
205
], base_path('phpunit.xml'));
206
207
}
-}
208
+}
0 commit comments