14 lines
330 B
PHP
14 lines
330 B
PHP
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface CheckLoginCredentialsHookObserverInterface.
|
|
*/
|
|
interface CheckLoginCredentialsHookObserverInterface extends HookObserverInterface
|
|
{
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function checkLoginCredentials(CheckLoginCredentialsHookEventInterface $event);
|
|
}
|