BIHomeWP/wp-content/plugins/wordpress-seo/deprecated/admin/google-search-console/class-gsc-platform-tabs.php
2020-02-13 10:39:37 +07:00

47 lines
650 B
PHP

<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin\Google_Search_Console
*/
/**
* Class WPSEO_GSC_Platform_Tabs.
*
* @deprecated 12.5
*
* @codeCoverageIgnore
*/
class WPSEO_GSC_Platform_Tabs {
/**
* Return the tabs as a string.
*
* @deprecated 12.5
*
* @codeCoverageIgnore
*
* @return string
*/
public function __toString() {
_deprecated_function( __METHOD__, 'WPSEO 12.5' );
return '';
}
/**
* Getting the current_tab.
*
* @deprecated 12.5
*
* @codeCoverageIgnore
*
* @return string
*/
public function current_tab() {
_deprecated_function( __METHOD__, 'WPSEO 12.5' );
return '';
}
}