<?php
namespace IlluminateAuthEvents;
use IlluminateQueueSerializesModels;
class Validated
{
use SerializesModels;
/**
* Create a new event instance.
*
* @param string $guard The authentication guard name.
* @param IlluminateContractsAuthAuthenticatable $user The user retrieved and validated from the User Provider.
*/
public function __construct(
public $guard,
public $user,
) {
}
}