| Server IP : 45.77.68.45 / Your IP : 127.0.0.100 Web Server : PHPix/0.2.2 (Caddy compatible) System : wasi wasmer.sh 0.0.0 0.0.0 wasm32 User : ( 1) PHP Version : 8.3.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /app/wp-content/plugins/wordpress-seo/src/deprecated/src/helpers/ |
Upload File : |
<?php
namespace Yoast\WP\SEO\Helpers;
/**
* A helper object for the request state.
*
* @deprecated 23.6
* @codeCoverageIgnore Because of deprecation.
*/
class Request_Helper {
/**
* Checks if the current request is a REST request.
*
* @deprecated 23.6
* @codeCoverageIgnore
*
* @return bool True when the current request is a REST request.
*/
public function is_rest_request() {
\_deprecated_function( __METHOD__, 'Yoast SEO 23.6', 'wp_is_serving_rest_request' );
return \defined( 'REST_REQUEST' ) && \REST_REQUEST === true;
}
}