Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 0 |
1 | <?php |
||
54 | 2 | public function uncompress($source, $target) |
|
55 | { |
||
56 | 2 | if (false === $this->zip->open($source, \ZipArchive::CHECKCONS)) { |
|
57 | return false; |
||
58 | } |
||
59 | |||
60 | 2 | if (false === @$this->zip->extractTo(dirname($target), basename($target))) { |
|
61 | 1 | return false; |
|
62 | } |
||
63 | |||
64 | 1 | return $this->zip->close(); |
|
65 | } |
||
66 | } |
||
67 |