Example #1
0
 /**
  * @param COMPRESSED_FILE $file
  * @param resource $zh Handle returned by {@link PHP_MANUAL#zip_open()}
  * @param resource $h Handle returned by {@link PHP_MANUAL#zip_entry_open()}
  */
 public function __construct($file, $zh, $h)
 {
     parent::__construct($file);
     $this->_zip_handle = $zh;
     $this->_handle = $h;
 }