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
{{ message }}
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.
I tried to use your package with a custom UserProvider
Argument 1 passed to Kbwebs\MultiAuth\Guard::__construct() must implement interface Illuminate\Contracts\Auth\UserProvider, instance of Illuminate\Auth\Guard given
in Guard->__construct(object(Guard), object(Store), 'user') in AuthManager.php line 47
I registered my UserProvider as written in Laravel's doc (I use Laravel 5.1)
I tried to create a custom EloquentUserProvider about your package and I also had the same problem. I searched for the problem and after some time, I realized that the method callCustomCreator in Kbwebs\MultiAuth\AuthManager class return a Guard type instead of a Provider type.
To resolve this issue, I chained a method getProvider() to return to be a Provider type.
Hi,
I tried to use your package with a custom UserProvider
I registered my UserProvider as written in Laravel's doc (I use Laravel 5.1)
Actually I wrote a dirty fix, I registered my provider like that.
The text was updated successfully, but these errors were encountered: