class-gsc-platform-tabs.php 650 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\Google_Search_Console
  6. */
  7. /**
  8. * Class WPSEO_GSC_Platform_Tabs.
  9. *
  10. * @deprecated 12.5
  11. *
  12. * @codeCoverageIgnore
  13. */
  14. class WPSEO_GSC_Platform_Tabs {
  15. /**
  16. * Return the tabs as a string.
  17. *
  18. * @deprecated 12.5
  19. *
  20. * @codeCoverageIgnore
  21. *
  22. * @return string
  23. */
  24. public function __toString() {
  25. _deprecated_function( __METHOD__, 'WPSEO 12.5' );
  26. return '';
  27. }
  28. /**
  29. * Getting the current_tab.
  30. *
  31. * @deprecated 12.5
  32. *
  33. * @codeCoverageIgnore
  34. *
  35. * @return string
  36. */
  37. public function current_tab() {
  38. _deprecated_function( __METHOD__, 'WPSEO 12.5' );
  39. return '';
  40. }
  41. }