47 lines
650 B
PHP
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 '';
|
|
}
|
|
}
|