You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:bug: about disk url (#32)
1.$this->path is null at 92 line
2.is_callable(array($disk, 'url')) or is_callable($disk, 'url')
3.[method_exists faster than is_callable](https://www.php.net/manual/zh/function.is-callable.php)
```
\is_callable(array($disk, 'url')) //true
\is_callable(array($disk, 'any')) //true
The story about __call() is a bit more complicated unfortunately.
```