示例#1
0
 /**
  * Sending a request to the Google Search Console API to let them know we marked an issue as fixed.
  *
  * @param WPSEO_GSC_Service $service Service object instance.
  *
  * @return bool
  */
 private function send_mark_as_fixed(WPSEO_GSC_Service $service)
 {
     return $service->mark_as_fixed($this->url, $this->platform, $this->category);
 }
示例#2
0
 /**
  * Sending a request to the Google Search Console API to let them know we marked an issue as fixed.
  *
  * @return bool
  */
 private function send_mark_as_fixed()
 {
     $service = new WPSEO_GSC_Service(WPSEO_GSC_Settings::get_profile());
     return $service->mark_as_fixed($this->url, $this->platform, $this->category);
 }