Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
laravel
/
fortify
/
src
/
Events
/
Editing: TwoFactorAuthenticationEvent.php
<?php namespace Laravel\Fortify\Events; use Illuminate\Foundation\Events\Dispatchable; abstract class TwoFactorAuthenticationEvent { use Dispatchable; /** * The user instance. * * @var \App\Models\User */ public $user; /** * Create a new event instance. * * @param \App\Models\User $user * @return void */ public function __construct($user) { $this->user = $user; } }
Save
Cancel