| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function __construct($archiveFileName) |
||
| 18 | { |
||
| 19 | parent::__construct($archiveFileName); |
||
| 20 | $stat = gzip_stat($archiveFileName); |
||
| 21 | if ($stat === false) { |
||
| 22 | throw new Exception('Could not open Gzip file'); |
||
| 23 | } |
||
| 24 | $this->uncompressedSize = $stat['size']; |
||
| 25 | $this->modificationTime = $stat['mtime']; |
||
| 26 | } |
||
| 57 | } |