1 | <?php |
||
7 | class ZipArchiveAdapter implements ZipInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var ZipArchive |
||
11 | */ |
||
12 | protected $oZipArchive; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $filename; |
||
18 | |||
19 | 3 | public function open($filename) |
|
32 | |||
33 | 2 | public function close() |
|
40 | |||
41 | 1 | public function addFromString($localname, $contents) |
|
49 | } |
||
50 |