From 595d1609de2f439ba7dbd4782175b383380782c5 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Mon, 21 Oct 2024 12:57:15 +1300 Subject: [PATCH] API Remove deprecated method --- src/Storage/DBFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Storage/DBFile.php b/src/Storage/DBFile.php index 4c397d6f..5ea53c00 100644 --- a/src/Storage/DBFile.php +++ b/src/Storage/DBFile.php @@ -455,7 +455,7 @@ protected function isValidFilename(string $filename): bool protected function assertFilenameValid(string $filename): void { $result = new ValidationResult(); - $this->validate($result, $filename); + $this->validateFilename($result, $filename); if (!$result->isValid()) { throw new ValidationException($result); }