From 1df62258685572a91d5ed0028a731df20be54c75 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 15 Aug 2021 13:55:09 +0200 Subject: [PATCH] Update src/Model/Storage/Filesystem.php Co-authored-by: Hypolite Petovan --- src/Model/Storage/Filesystem.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Model/Storage/Filesystem.php b/src/Model/Storage/Filesystem.php index 2d6a352015..c6c939bd46 100644 --- a/src/Model/Storage/Filesystem.php +++ b/src/Model/Storage/Filesystem.php @@ -127,7 +127,6 @@ class Filesystem implements IWritableStorage $result = file_get_contents($file); - // just in case the result is REALLY false, not zero or empty or anything else, throw the exception if ($result === false) { throw new StorageException(sprintf('Filesystem storage failed to get data to "%s". Check your write permissions', $file)); }