summaryrefslogtreecommitdiff
path: root/classes/iauthmodule.php
blob: e714cc6cad5e3bf6b9bea93da498d25a5df5146f (plain)
1
2
3
4
5
<?php
interface IAuthModule {
	function authenticate($login, $password); // + optional third parameter: $service
	function hook_auth_user(...$args); // compatibility wrapper due to how hooks work
}