PageRenderTime 105ms CodeModel.GetById 21ms RepoModel.GetById 4ms app.codeStats 0ms

/framework/experimental/auth/AuthStorageHandler.php

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