Overrides Constraint::failureDescription
protected function failureDescription($other) : string { $message = 'The email subject ' . $this->toString(); if ($other instanceof Email) { $message .= \sprintf('. The subject was: "%s"', $other->getSubject() ?? '<empty>'); } return $message; }