Exemplo n.º 1
0
 public function delete($project_path, $delete_log = false)
 {
     parent::delete($project_path);
     if ($delete_log) {
         $path = $this->path($project_path) . '.make.log';
         if (file_exists($path)) {
             unlink($path);
         }
     }
 }