123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- *
- * Cube Framework $Id$ mo/7oMrc3y63RMhmKUWZCtZ02Sm9Zi2ybMChMip1thQ=
- *
- * @link http://codecu.be/framework
- * @copyright Copyright (c) 2014 CodeCube SRL
- * @license http://codecu.be/framework/license Commercial License
- *
- * @version 1.0
- */
- /**
- * authentication adapter interface
- */
- namespace Cube\Authentication\Adapter;
- interface AdapterInterface
- {
- /**
- *
- * perform an authentication attempt
- *
- * @return \Cube\Authentication\Result
- */
- public function authenticate();
- }
|