Skip to content

Commit

Permalink
Merge pull request #75 from grossmannmartin/patch-1
Browse files Browse the repository at this point in the history
Filesystem cache wrapping now accepts original filesystem config
  • Loading branch information
barryvdh authored Aug 31, 2019
2 parents c4b6c4b + e8d2f0f commit a98b3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
}
}
Expand Down

0 comments on commit a98b3ef

Please sign in to comment.