Files
Chamilo/main/inc/lib/hook/interfaces/CheckLoginCredentialsHookEventInterface.php
2025-04-10 12:49:05 +02:00

16 lines
313 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Interface CheckLoginCredentialsHookEventInterface.
*/
interface CheckLoginCredentialsHookEventInterface extends HookEventInterface
{
/**
* Call to all observers.
*
* @return bool
*/
public function notifyLoginCredentials();
}