class-gsc-marker.php 770 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\Google_Search_Console
  6. */
  7. /**
  8. * Class WPSEO_GSC_Marker.
  9. *
  10. * @deprecated 12.5
  11. *
  12. * @codeCoverageIgnore
  13. */
  14. class WPSEO_GSC_Marker {
  15. /**
  16. * Setting up the needed API libs and return the result.
  17. *
  18. * If param URL is given, the request is performed by a bulk action.
  19. *
  20. * @deprecated 12.5
  21. *
  22. * @codeCoverageIgnore
  23. *
  24. * @param string $url Optional URL.
  25. */
  26. public function __construct( $url = '' ) {
  27. _deprecated_function( __METHOD__, 'WPSEO 12.5' );
  28. }
  29. /**
  30. * Getting the response for the AJAX request.
  31. *
  32. * @deprecated 12.5
  33. *
  34. * @codeCoverageIgnore
  35. *
  36. * @return string
  37. */
  38. public function get_response() {
  39. _deprecated_function( __METHOD__, 'WPSEO 12.5' );
  40. return '';
  41. }
  42. }