<?php
namespace IlluminateAuthEvents;
use IlluminateQueueSerializesModels;
class Logout
{
use SerializesModels;
/**
* Create a new event instance.
*
* @param string $guard The authentication guard name.
* @param IlluminateContractsAuthAuthenticatable $user The authenticated user.
*/
public function __construct(
public $guard,
public $user,
) {
}
}