Ejemplo n.º 1
0
 /**
  * @param Task $task
  */
 public function populateWithTask(Task $task)
 {
     $this->id = $task->id();
     $this->deleted = $task->deleted();
     $this->finished = $task->finished();
     $this->title = $task->title();
     $this->content = $task->content();
 }