12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- *
- * Cube Framework $Id$ eGUDboJjuwGPSA7r29ao4OeiZ+EgLZZtGcBXAr2iIhg=
- *
- * @link http://codecu.be/framework
- * @copyright Copyright (c) 2015 CodeCube SRL
- * @license http://codecu.be/framework/license Commercial License
- *
- * @version 1.4
- */
- namespace Cube\Authentication\Storage;
- /**
- * authentication storage interface
- *
- * Interface StorageInterface
- *
- * @package Cube\Authentication\Storage
- */
- interface StorageInterface
- {
- public function isEmpty();
- public function read();
- /**
- *
- * set storage contents
- *
- * @param mixed $contents
- */
- public function write($contents);
- public function clear();
- }
|