Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.4746 |
Changes | 0 |
1 | <?php |
||
19 | 3 | public function open($filename) |
|
20 | { |
||
21 | 3 | $this->filename = $filename; |
|
22 | 3 | $this->oZipArchive = new ZipArchive(); |
|
23 | |||
24 | 3 | if ($this->oZipArchive->open($this->filename, ZipArchive::OVERWRITE) === true) { |
|
25 | 3 | return $this; |
|
26 | } |
||
27 | if ($this->oZipArchive->open($this->filename, ZipArchive::CREATE) === true) { |
||
28 | return $this; |
||
29 | } |
||
30 | throw new \Exception("Could not open $this->filename for writing."); |
||
31 | } |
||
32 | |||
50 |