Overrides Constraint::matches
protected function matches(mixed $other) : bool { if ($this->expectedMessage === '') { return $other === ''; } return str_contains((string) $other, $this->expectedMessage); }