content = $content; } /** * @return string */ public function getContent() { return $this->content; } /** * @param JsonPathMatcher */ public function setJsonPathMatcher(JsonPathMatcher $jsonPathMatcher) { $this->jsonPathMatcher = $jsonPathMatcher; } /** * @return JsonPathMatcher */ public function getJsonPathMatcher() { return $this->jsonPathMatcher; } /** * @param string */ public function setMatcher($matcher) { $this->matcher = $matcher; } /** * @return string */ public function getMatcher() { return $this->matcher; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ContentMatcher::class, 'Google_Service_Monitoring_ContentMatcher');