From e8d2f0f84cf644d7413d47874f34f41590ef139a Mon Sep 17 00:00:00 2001 From: Martin Grossmann Date: Mon, 19 Aug 2019 13:34:45 +0200 Subject: [PATCH] filesystem cache wrapping now accepts original fs config --- src/Driver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Driver.php b/src/Driver.php index a44f21e..f017eba 100644 --- a/src/Driver.php +++ b/src/Driver.php @@ -147,7 +147,7 @@ protected function init() if ($this->fscache) { $adapter = new CachedAdapter($adapter, $this->fscache); - $this->fs = new Filesystem($adapter); + $this->fs = new Filesystem($adapter, $this->fs->getConfig()); } } }