/framework/experimental/auth/AuthStorageHandler.php
PHP | 6 lines | 6 code | 0 blank | 0 comment | 0 complexity | 02e37d42e903e13eacd6dc68aa50994e MD5 | raw file
1<?php 2interface AuthStorageHandler 3{ 4 abstract public function getInfo($username); 5 abstract public function setInfo($username, $info); 6}