update method call

This commit is contained in:
Taylor Otwell 2016-02-22 22:19:31 -06:00
parent c751b33d01
commit 62d62a0524
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ class AuthController extends Controller
*/
public function __construct()
{
$this->middleware('guest', ['except' => 'logout']);
$this->middleware($this->guestMiddleware(), ['except' => 'logout']);
}
/**