ttrss/classes/iauthmodule.php

5 lines
115 B
PHP

<?php
interface IAuthModule {
function authenticate($login, $password); // + optional third parameter: $service
}