bootstrap/paths.php disappeared
Fixing php artisan serve functionality
This commit is contained in:
parent
d70914b84d
commit
3dfc5fc768
|
@ -4,9 +4,9 @@
|
|||
|
||||
$uri = urldecode($uri);
|
||||
|
||||
$paths = require __DIR__.'/bootstrap/paths.php';
|
||||
$public = __DIR__ . '/public';
|
||||
|
||||
$requested = $paths['public'].$uri;
|
||||
$requested = $public . $uri;
|
||||
|
||||
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
|
||||
// built-in PHP web server. This provides a convenient way to test a Laravel
|
||||
|
@ -16,4 +16,4 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
require_once $paths['public'].'/index.php';
|
||||
require_once $public . '/index.php';
|
||||
|
|
Loading…
Reference in New Issue