Gush\Helper\FilesystemHelper::clearTempFiles PHP 메소드

clearTempFiles() 공개 메소드

Remove all the temp-file that were created with newTempFilename().
public clearTempFiles ( )
    public function clearTempFiles()
    {
        $this->fs->remove($this->tempFilenames);
    }

Usage Example

예제 #1
0
 public function cleanUpTempFiles()
 {
     $this->fsHelper->clearTempFiles();
     $this->gitHelper->clearTempBranches();
 }