From 133baf89f39d4dedc5429e5fc758139b6db0d5f7 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 14 Sep 2021 17:18:58 +0200 Subject: [PATCH] wip #4666 --- src/Files/VirtualDirectory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Files/VirtualDirectory.php b/src/Files/VirtualDirectory.php index aaea168..4b05801 100644 --- a/src/Files/VirtualDirectory.php +++ b/src/Files/VirtualDirectory.php @@ -26,7 +26,7 @@ class VirtualDirectory public function copy($from, $to) { if (!file_exists($from)) { - throw new \Exception(sprintf('File %s doen\'t exist', $from)); + throw new \Exception(sprintf('File %s doesn\'t exist', $from)); } $realto = $this->path($to); if (!$realto) { -- 2.39.5