Minor code standards fix (#5138)

This commit is contained in:
Saifur Rahman Mohsin 2020-06-25 21:48:21 +05:30 committed by GitHub
parent b2d88d6da9
commit 869625aef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -11,8 +11,7 @@ $uri = urldecode(
// 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
// application without having installed a "real" web server software here.
if ($uri !== '/' and file_exists(__DIR__.'/'.$uri))
{
if ($uri !== '/' and file_exists(__DIR__.'/'.$uri)) {
return false;
}
require_once __DIR__.'/index.php';