iauthmodule.php 78 B

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