summaryrefslogtreecommitdiff
path: root/vendor/league/flysystem/src/Adapter
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/league/flysystem/src/Adapter')
-rw-r--r--vendor/league/flysystem/src/Adapter/Local.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/league/flysystem/src/Adapter/Local.php b/vendor/league/flysystem/src/Adapter/Local.php
index eea8cb6e70..8e61e658ab 100644
--- a/vendor/league/flysystem/src/Adapter/Local.php
+++ b/vendor/league/flysystem/src/Adapter/Local.php
@@ -220,7 +220,7 @@ class Local extends AbstractAdapter
public function read($path)
{
$location = $this->applyPathPrefix($path);
- $contents = file_get_contents($location);
+ $contents = @file_get_contents($location);
if ($contents === false) {
return false;