1 | <?php |
||
12 | class Bzip2Compressor implements CompressorInterface |
||
13 | { |
||
14 | /** |
||
15 | * @param string $source |
||
16 | * @param string $target |
||
17 | * |
||
18 | * @return bool |
||
19 | */ |
||
20 | 2 | public function compress($source, $target = '') |
|
41 | |||
42 | /** |
||
43 | * @param string $source |
||
44 | * @param string $target |
||
45 | * |
||
46 | * @return bool |
||
47 | */ |
||
48 | 2 | public function uncompress($source, $target) |
|
68 | } |
||
69 |