accepted = $accepted; $this->message = $message; } /** * Get the value of the object. * * @return mixed */ public function get(): array { return [ 'accepted' => $this->accepted, 'message' => $this->message, ]; } /** * @return bool */ public function accepted(): bool { return $this->accepted; } /** * @return string */ public function message(): string { return $this->message; } }