flysystem-fallback-adapter
flysystem-fallback-adapter copied to clipboard
Flysystem adapter for fallback filesystems
Is it possible?
This PR `https://github.com/Litipk/flysystem-fallback-adapter/pull/2` created issue, you should revert these changes. How it was before: ``` if ($this->mainAdapter->has($path)) { return $this->mainAdapter->read($path); } ``` How it is now: ``` $result = $this->mainAdapter->read($path);...
First of all; thank you for creating this adapter! It's a great help with transitioning from one storage platform to another. I would like to make one suggestion though. Currently...