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); if (false !== $result) { return $result; } ``` I agree that this changes save some performance. But now, you get warning if file does not exists in system (If errors are not suppressed)
This PR
https://github.com/Litipk/flysystem-fallback-adapter/pull/2created issue, you should revert these changes.How it was before:
How it is now:
I agree that this changes save some performance. But now, you get warning if file does not exists in system (If errors are not suppressed)