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

Ignore invalid paths (#1478)

This commit is contained in:
Ahmed Ammar
2024-05-07 16:22:40 +03:00
committed by GitHub
parent a21d0bfa9a
commit 0f3ab1fec8
2 changed files with 11 additions and 0 deletions

View File

@@ -160,6 +160,10 @@ public function sitePath(string $siteName): ?string
$domain = static::domainFromSiteName($siteName);
foreach ($this->config['paths'] as $path) {
if (! is_dir($path)) {
continue;
}
$handle = opendir($path);
if ($handle === false) {