123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin\Google_Search_Console
- */
- /**
- * Class WPSEO_GSC_Service.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- */
- class WPSEO_GSC_Service {
- /**
- * Search Console service constructor.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @param string $profile Profile name.
- */
- public function __construct( $profile = '' ) {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- }
- /**
- * Returns the client.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @return Yoast_Api_Google_Client
- */
- public function get_client() {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- return null;
- }
- /**
- * Removes the option and calls the clients clear_data method to clear that one as well.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- */
- public function clear_data() {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- }
- /**
- * Get all sites that are registered in the GSC panel.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @return array
- */
- public function get_sites() {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- return array();
- }
- /**
- * Get crawl issues.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @return array
- */
- public function get_crawl_issue_counts() {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- return array();
- }
- /**
- * Sending request to mark issue as fixed.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @param string $url Issue URL.
- * @param string $platform Platform (desktop, mobile, feature phone).
- * @param string $category Issue type.
- *
- * @return bool
- */
- public function mark_as_fixed( $url, $platform, $category ) {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- return false;
- }
- /**
- * Fetching the issues from the GSC API.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @param string $platform Platform (desktop, mobile, feature phone).
- * @param string $category Issue type.
- *
- * @return mixed
- */
- public function fetch_category_issues( $platform, $category ) {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- return array();
- }
- }
|