12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Cube\Authentication\Storage;
- interface StorageInterface
- {
- public function isEmpty();
- public function read();
-
- public function write($contents);
- public function clear();
- }
|