/framework/experimental/auth/AuthStorageHandler.php
PHP | 6 lines | 6 code | 0 blank | 0 comment | 0 complexity | 02e37d42e903e13eacd6dc68aa50994e MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1
- <?php
- interface AuthStorageHandler
- {
- abstract public function getInfo($username);
- abstract public function setInfo($username, $info);
- }