From 3bd058492053e2d5fd5a6adf12eff84fc96f34b4 Mon Sep 17 00:00:00 2001 From: Eliu Florez Date: Tue, 3 Mar 2015 22:43:33 -0430 Subject: [PATCH] Update server.php Replace and by && --- server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.php b/server.php index 8f3758776..c7e378dff 100644 --- a/server.php +++ b/server.php @@ -13,7 +13,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__.'/public'.$uri)) +if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { return false; }