12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin\Google_Search_Console
- */
- /**
- * Class WPSEO_GSC_Marker.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- */
- class WPSEO_GSC_Marker {
- /**
- * Setting up the needed API libs and return the result.
- *
- * If param URL is given, the request is performed by a bulk action.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @param string $url Optional URL.
- */
- public function __construct( $url = '' ) {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- }
- /**
- * Getting the response for the AJAX request.
- *
- * @deprecated 12.5
- *
- * @codeCoverageIgnore
- *
- * @return string
- */
- public function get_response() {
- _deprecated_function( __METHOD__, 'WPSEO 12.5' );
- return '';
- }
- }
|