aboutsummaryrefslogtreecommitdiffstats
path: root/includes/user/Hook/UserLogoutHook.php
blob: 8f4c6866823e20cf8c7691f3fbae78c04773a368 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace MediaWiki\User\Hook;

use MediaWiki\User\User;

/**
 * This is a hook handler interface, see docs/Hooks.md.
 * Use the hook name "UserLogout" to register handlers implementing this interface.
 *
 * @stable to implement
 * @ingroup Hooks
 */
interface UserLogoutHook {
	/**
	 * This hook is called before a user logs out.
	 *
	 * @since 1.35
	 *
	 * @param User $user The user that is about to be logged out
	 * @return bool|void True or no return value to continue or false to abort
	 */
	public function onUserLogout( $user );
}