예제 #1
0
파일: ZipAdapter.php 프로젝트: elibyy/zip
 /**
  * @inheritdoc
  */
 public function removeFileByObject(File $file)
 {
     $results = $this->getArchive()->deleteIndex($file->getIndex());
     $this->updateArchive();
     return $results;
 }
예제 #2
0
파일: PharAdapter.php 프로젝트: elibyy/zip
 /**
  * @inheritdoc
  */
 public function removeFileByObject(File $file)
 {
     return $this->removeFileByName($file->getName());
 }