示例#1
0
 /**
  * Updates a specific note in the database
  *
  * This method uses the note repository to update content, deadline and
  * completed for a specific note in the database.
  *
  * @since 1.0.0
  *
  * @param Request $request The HTTP request with the data of the note
  * @return int The HTTP status code
  */
 public function update(Request $request)
 {
     return $this->notes->updateNote($request);
 }