Lists all files in the archive.
An array of file names relative to the root of the archive.
Overrides ArchiverInterface::listContents
public function listContents() {
  $files = array();
  foreach ($this->tar
    ->listContent() as $file_data) {
    $files[] = $file_data['filename'];
  }
  return $files;
}