Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordpress-seo-premium/classes/deprecated/premium-prominent-words-recalculation-service.php
Tony Volpe 4eb982d7a8 Merged in feature/from-pantheon (pull request #16)
code from pantheon

* code from pantheon
2024-01-10 17:03:02 +00:00

31 lines
643 B
PHP

<?php
/**
* WPSEO Premium plugin file.
*
* @package WPSEO\Premium
*/
_deprecated_file( __FILE__, 'WPSEO Premium 14.5' );
/**
* Represents the service for the recalculation.
*/
class WPSEO_Premium_Prominent_Words_Recalculation_Service {
/**
* Removes the recalculation notification.
*
* @deprecated 14.5
* @codeCoverageIgnore
*
* @param WP_REST_Request $request The current request. Unused.
*
* @return WP_REST_Response The response to give.
*/
public function remove_notification( WP_REST_Request $request ) {
_deprecated_function( __METHOD__, 'WPSEO Premium 14.5' );
return new WP_REST_Response( '1' );
}
}