flysystem-fallback-adapter icon indicating copy to clipboard operation
flysystem-fallback-adapter copied to clipboard

Flysystem adapter for fallback filesystems

Results 3 flysystem-fallback-adapter issues
Sort by recently updated
recently updated
newest added

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...