From 7a055c2fd318e883b2995c09bec7be64e1df31e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Mon, 29 Aug 2022 19:30:01 +0200 Subject: [PATCH] fix docblock style --- src/Concerns/DealsWithTenantSymlinks.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Concerns/DealsWithTenantSymlinks.php b/src/Concerns/DealsWithTenantSymlinks.php index f5536445..e72b78f9 100644 --- a/src/Concerns/DealsWithTenantSymlinks.php +++ b/src/Concerns/DealsWithTenantSymlinks.php @@ -33,9 +33,7 @@ trait DealsWithTenantSymlinks return $symlinks->mapWithKeys(fn ($item) => $item); } - /** - * Determine if the provided path is an existing symlink. - */ + /** Determine if the provided path is an existing symlink. */ protected static function symlinkExists(string $link): bool { return file_exists($link) && is_link($link);