purgeDir() публичный Метод

public purgeDir ( string $path )
$path string
Пример #1
0
 /**
  * @param string $destination
  */
 private function cleanDestinationWithCaution($destination)
 {
     if (!$this->fileSystem->isDirEmpty($destination)) {
         if ($this->io->ask('<warning>Destination is not empty. Do you want to erase it?</warning>', true)) {
             $this->fileSystem->purgeDir($destination);
         }
     }
 }