From b1224ee6a181186519f024bc7a03e0ecc2781af0 Mon Sep 17 00:00:00 2001 From: Guillaume Date: Mon, 11 Mar 2024 22:45:53 +0100 Subject: [PATCH] [10.x] Incorrect return in `FileSystem.php` (#50459) * [10.x] incorrect return * Update Filesystem.php --------- Co-authored-by: Taylor Otwell --- src/Illuminate/Filesystem/Filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Filesystem/Filesystem.php b/src/Illuminate/Filesystem/Filesystem.php index 3c464fd00b66..cfd4c2207835 100644 --- a/src/Illuminate/Filesystem/Filesystem.php +++ b/src/Illuminate/Filesystem/Filesystem.php @@ -347,7 +347,7 @@ public function copy($path, $target) * * @param string $target * @param string $link - * @return void + * @return bool|null */ public function link($target, $link) {