hook_event_dispatcher-8.x-2.04/modules/user_event_dispatcher/src/Event/User/UserLogoutEvent.php
modules/user_event_dispatcher/src/Event/User/UserLogoutEvent.php
<?php
namespace Drupal\user_event_dispatcher\Event\User;
use Drupal\Component\EventDispatcher\Event;
use Drupal\Core\Session\AccountInterface;
use Drupal\hook_event_dispatcher\Attribute\HookEvent;
use Drupal\hook_event_dispatcher\Event\EventInterface;
use Drupal\user_event_dispatcher\UserHookEvents;
/**
* Class UserLogoutEvent.
*/
#[HookEvent(id: 'user_logout', hook: 'user_logout')]
final class UserLogoutEvent extends Event implements EventInterface {
/**
* UserLoginEvent constructor.
*
* @param \Drupal\Core\Session\AccountInterface $account
* Account.
*/
public function __construct(private readonly AccountInterface $account) {
}
/**
* Get the account.
*
* @return \Drupal\Core\Session\AccountInterface
* Account.
*/
public function getAccount(): AccountInterface {
return $this->account;
}
/**
* Get the dispatcher type.
*
* @return string
* The dispatcher type.
*/
public function getDispatcherType(): string {
return UserHookEvents::USER_LOGOUT;
}
}
