ollieread / multiauth

Laravel multi auth
441 stars 109 forks source link

Ollieread\Multiauth\Guard should require Illuminate Request instead of own #69

Closed syphernl closed 9 years ago

syphernl commented 9 years ago

When using MultiAuth and providing the fourth argument to the Guard class it results in an error stating that it expects an Ollieread\Multiauth\Request instead of Illuminate\Http\Request

This seems to be a simple fix by adding this to Guard.php:

use Illuminate\Http\Request;

Not sure whether this argument is being used at all though.

ollieread commented 9 years ago

That's strange. I'll take a look.

ollieread commented 9 years ago

This is fixed in the most recent version.