class-field-connect-google-search-console.php 794 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\ConfigurationUI
  6. */
  7. /**
  8. * Class WPSEO_Config_Field_Connect_Google_Search_Console.
  9. *
  10. * @deprecated 12.5
  11. *
  12. * @codeCoverageIgnore
  13. */
  14. class WPSEO_Config_Field_Connect_Google_Search_Console extends WPSEO_Config_Field {
  15. /**
  16. * WPSEO_Config_Field_Connect_Google_Search_Console constructor.
  17. *
  18. * @deprecated 12.5
  19. *
  20. * @codeCoverageIgnore
  21. */
  22. public function __construct() {
  23. _deprecated_function( __METHOD__, 'WPSEO 12.5' );
  24. parent::__construct( 'connectGoogleSearchConsole', 'ConnectGoogleSearchConsole' );
  25. }
  26. /**
  27. * Get the data.
  28. *
  29. * @deprecated 12.5
  30. *
  31. * @codeCoverageIgnore
  32. *
  33. * @return array
  34. */
  35. public function get_data() {
  36. _deprecated_function( __METHOD__, 'WPSEO 12.5' );
  37. return array();
  38. }
  39. }