From 869625aef2e56a6ec080d73d888e70e590d2b73b Mon Sep 17 00:00:00 2001 From: Saifur Rahman Mohsin Date: Thu, 25 Jun 2020 21:48:21 +0530 Subject: [PATCH] Minor code standards fix (#5138) --- server.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server.php b/server.php index 7df7b455c..c42e5946c 100644 --- a/server.php +++ b/server.php @@ -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';