コード例 #1
0
ファイル: Backup.php プロジェクト: alibo/php-backup
 /**
  * Remove all files.
  *
  * @return void
  */
 private function cleanup()
 {
     $cleanup = new CleanupProcessor($this);
     $cleanup->execute();
     if ($this->noOfBackups !== 0) {
         $cleanup->clearOutdated();
     }
 }