action = $action; $this->journal = $journal; } /** * @return bool */ public function act() { $this->journal->description = $this->journal->description . $this->action->action_value; $this->journal->save(); return true; } }