agriget/classes/iauthmodule.php
2019-03-22 10:17:29 -04:00

5 lines
75 B
PHP

<?php
interface IAuthModule {
function authenticate($login, $password);
}