mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-12-10 23:57:12 +00:00
14 lines
202 B
PHP
14 lines
202 B
PHP
|
<?php
|
||
|
|
||
|
namespace MediaWiki\Extension\OATHAuth;
|
||
|
|
||
|
interface IAuthKey {
|
||
|
|
||
|
/**
|
||
|
* @param string $token
|
||
|
* @param OATHUser $user
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function verify( $token, OATHUser $user );
|
||
|
}
|