File: //opt/plugins/wordpress-seo/src/conditionals/xmlrpc-conditional.php
<?php
/**
* Yoast SEO Plugin File.
*
* @package Yoast\YoastSEO\Conditionals
*/
namespace Yoast\WP\SEO\Conditionals;
/**
* Conditional that is met when the current request is an XML-RPC request.
*
* @package Yoast\WP\SEO\Conditionals
*/
class XMLRPC_Conditional implements Conditional {
/**
* Returns whether the current request is an XML-RPC request.
*
* @return boolean `true` when the current request is an XML-RPC request, `false` if not.
*/
public function is_met() {
return ( \defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST );
}
}