| 1 | <?php |
||
| 13 | class FileStorage implements StorageInterface |
||
| 14 | { |
||
| 15 | public $path; |
||
| 16 | |||
| 17 | 3 | public function __construct($path = null) |
|
| 21 | |||
| 22 | 3 | protected function getFullPath($name) |
|
| 26 | |||
| 27 | 2 | public function has($name) |
|
| 31 | |||
| 32 | 2 | public function get($name) |
|
| 38 | |||
| 39 | 3 | public function set($name, $text) |
|
| 49 | |||
| 50 | public function remove($name) |
||
| 56 | } |
||
| 57 |