Overrides Constraint::failureDescription
protected function failureDescription($other) : string { if (!$other instanceof Crawler) { throw new \InvalidArgumentException(\sprintf('"%s" constraint expected an argument of type "%s", got "%s".', self::class, Crawler::class, get_debug_type($other))); } return 'the Crawler ' . $this->toString(); }