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

Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2022-12-03 23:11:03 +00:00
parent 59967c3068
commit 0c27c62cec
3 changed files with 9 additions and 9 deletions

View File

@@ -31,8 +31,8 @@ public function isStaticFile($sitePath, $siteName, $uri)
if ($this->isActualFile($publicPath)) {
return $publicPath;
} elseif (file_exists($publicPath . '/index.html')) {
return $publicPath . '/index.html';
} elseif (file_exists($publicPath.'/index.html')) {
return $publicPath.'/index.html';
}
return false;