Exemple #1
0
 /**
  * Update a task
  * 
  * @param  integer $id
  * @param  array $data
  * @return Task 
  */
 public function updateTask($id, $data)
 {
     return $this->service->updateTask($this->projectId, $this->id, $id, $data);
 }