| 1 | <?php |
||
| 15 | class FileStorage implements StorageInterface |
||
| 16 | { |
||
| 17 | public $path; |
||
| 18 | |||
| 19 | public function __construct($path = null) |
||
| 23 | |||
| 24 | protected function getFullPath($name) |
||
| 28 | |||
| 29 | public function has($name) |
||
| 33 | |||
| 34 | public function get($name) |
||
| 40 | |||
| 41 | public function set($name, $text) |
||
| 51 | |||
| 52 | public function remove($name) |
||
| 58 | } |
||
| 59 |