6 lines
240 B
PHP
6 lines
240 B
PHP
|
|
<?php
|
||
|
|
// Fix Laravel's namespace detection for multi-namespace autoloading
|
||
|
|
// Laravel scans composer.json psr-4 looking for App\ but gets confused
|
||
|
|
// when Core\, Mod\, Website\ also map under app/
|
||
|
|
app()->useAppPath(app()->basePath('app'));
|