コード例 #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());
 }