1 | <?php |
||
12 | class DummyCompressor implements CompressorInterface |
||
13 | { |
||
14 | /** |
||
15 | * @param string $source |
||
16 | * @param string $target |
||
17 | * |
||
18 | * @return bool |
||
19 | */ |
||
20 | 2 | public function compress($source, $target = '') |
|
28 | |||
29 | /** |
||
30 | * @param string $source |
||
31 | * @param string $target |
||
32 | * |
||
33 | * @return bool |
||
34 | */ |
||
35 | 2 | public function uncompress($source, $target) |
|
43 | } |
||
44 |