Skip to content

Commit

Permalink
Update server.php
Browse files Browse the repository at this point in the history
Replace and by &&
  • Loading branch information
EliuFlorez committed Mar 4, 2015
1 parent 393569b commit 3bd0584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// 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;
}
Expand Down

0 comments on commit 3bd0584

Please sign in to comment.