Files
theloftstore/vendor/laravel/fortify/src/Events/RecoveryCodesGenerated.php
T
2025-03-28 08:52:46 +01:00

29 lines
441 B
PHP

<?php
namespace Laravel\Fortify\Events;
use Illuminate\Foundation\Events\Dispatchable;
class RecoveryCodesGenerated
{
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;
}
}