Implements Drupal\Component\Archiver\ArchiveInterface::extract().
Overrides ArchiverInterface::extract
public function extract($path, array $files = array()) {
if ($files) {
$this->zip
->extractTo($path, $files);
}
else {
$this->zip
->extractTo($path);
}
return $this;
}