code}]: {$this->message} ({$this->hint})\n"; } /** * Returns the hint with the intention to be presented to the end user. If * an empty hint was specified upon instantiation, the message is returned * instead. * * @since 23.0.0 */ public function getHint(): string { return $this->hint !== '' ? $this->hint : $this->message; } }