| 1 | <?php |
||
| 16 | class FileStorage implements StorageInterface |
||
| 17 | { |
||
| 18 | public $path; |
||
| 19 | |||
| 20 | public function __construct($path = null) |
||
| 24 | |||
| 25 | protected function getFullPath($name) |
||
| 29 | |||
| 30 | public function has($name) |
||
| 34 | |||
| 35 | public function get($name) |
||
| 41 | |||
| 42 | public function set($name, $text) |
||
| 52 | |||
| 53 | public function remove($name) |
||
| 59 | } |
||
| 60 |