Exemple #1
0
 private function changeStatus()
 {
     if ($this->status) {
         $status = new Status();
         $status->text = $this->status;
         $status->authorId = $this->user->id;
         if ($this->status_mood_id) {
             $status->moodId = $this->status_mood_id;
         }
         $status->save();
     }
 }