TYPO3 CMS  TYPO3_6-2
AbstractStorage.php
Go to the documentation of this file.
1 <?php
3 
21 abstract class AbstractStorage {
22 
28  abstract public function get();
29 
35  abstract public function put($key);
36 
37 }