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 660381a commit b3c4cb4Copy full SHA for b3c4cb4
backend/app/Console/Kernel.php
@@ -7,7 +7,6 @@
7
8
class Kernel extends ConsoleKernel
9
{
10
-
11
/**
12
* Define the application's command schedule.
13
*
backend/server.php
@@ -14,7 +14,7 @@
14
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
15
// built-in PHP web server. This provides a convenient way to test a Laravel
16
// application without having installed a "real" web server software here.
17
-if ($uri !== '/' && file_exists(__DIR__ . '/public'.$uri)) {
+if ($uri !== '/' && file_exists(__DIR__ . '/public' . $uri)) {
18
return false;
19
}
20
0 commit comments