1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 16:40:05 +01:00

Use strict comparisons (#74)

This commit is contained in:
Lucas Michot
2016-05-27 17:36:50 +02:00
committed by Taylor Otwell
parent 05b870b484
commit 2497122810
5 changed files with 6 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ public function isStaticFile($sitePath, $siteName, $uri)
*/
public function frontControllerPath($sitePath, $siteName, $uri)
{
if ($uri == '/install.php') {
if ($uri === '/install.php') {
return $sitePath.'/web/install.php';
}