issues; } /** * Listing the issues an gives them back as fetched issues. * * @deprecated 12.5 * * @codeCoverageIgnore * * @param string $platform Platform (desktop, mobile, feature phone). * @param string $category Issue category. */ public function list_issues( $platform, $category ) { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Getting the counts for given platform and category. * * @deprecated 12.5 * * @codeCoverageIgnore * * @param string $platform Platform (desktop, mobile, feature phone). * @param string $category Issue type. * * @return integer */ public function get_issue_count( $platform, $category ) { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); return 0; } /** * Update the count of the issues. * * @deprecated 12.5 * * @codeCoverageIgnore * * @param string $platform Platform (desktop, mobile, feature phone). * @param string $category Issue type. * @param integer $new_count Updated count. */ public function update_issue_count( $platform, $category, $new_count ) { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } /** * Fetching the counts from the GSC API. * * @deprecated 12.5 * * @codeCoverageIgnore */ public function fetch_counts() { _deprecated_function( __METHOD__, 'WPSEO 12.5' ); } }