diff --git a/src/Storage/Device/Local.php b/src/Storage/Device/Local.php index 65149917..13bed91a 100644 --- a/src/Storage/Device/Local.php +++ b/src/Storage/Device/Local.php @@ -339,7 +339,7 @@ public function delete(string $path, bool $recursive = false): bool } \rmdir($path); - } elseif (\is_file($path)) { + } elseif (\is_file($path) || \is_link($path)) { return \unlink($path); }