iauthmodule.php 75 B

1234
  1. <?php
  2. interface IAuthModule {
  3. function authenticate($login, $password);
  4. }