title = $title; $this->description = $description; $this->subject = $subject; $this->target = $target; $this->causer = $causer; $this->status = $status; } /** * @return int */ public function getTitle(): string { return $this->title; } /** * @return int */ public function getDescription(): string { return $this->description; } /** * @return Notifiable */ public function getSubject(): Notifiable { return $this->subject; } /** * @return Notifiable */ public function getTarget(): Notifiable { return $this->target; } /** * @return Notifiable */ public function getCauser(): Notifiable { return $this->causer; } /** * @return int */ public function getStatus(): int { return $this->status; } }