我正在使用pragmarx/google2fa
Laravel软件包在我的Laravel应用上实现Google两次身份验证。它工作正常,但是在键入OTP密码-corre
<?php
namespace PragmaRX\Google2FALaravel\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class LoginSucceeded
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $user;
/**
* Create a new event instance.
*
* @param $user
*/
public function __construct($user)
{
$this->user = $user;
}
}
Laravel 5.3.xx版本是否有替代方法?
答案 0 :(得分:0)
Illuminate\Foundation\Events\Dispatchable
包含在Laravel 5.4中。
实际上,我在自述文件中看到pragmarx/google2fa
需要Laravel 5.4+才能运行。
对不起!