Files
Ben Roberts d92cc576d7 Initial commit of Session/Authentication code
Plugin architecture with single Database-backed implementation.
2011-12-19 12:13:14 +00:00

11 lines
144 B
PHP

<?php
interface SihnonFramework_Auth_IUser {
public function username();
public function checkPassword($password);
}
?>