예제 #1
0
파일: Task.php 프로젝트: iw-reload/iw
 public function setInitiator(User $initiator, $sync = true)
 {
     $this->initiator = $initiator;
     if ($sync) {
         $initiator->addInitiatedTask($this);
     }
 }