32 lines
735 B
PHP
32 lines
735 B
PHP
<?php
|
|
/**
|
|
* Rule processor that negates the rules in the rule's operand.
|
|
*/
|
|
|
|
namespace Automattic\WooCommerce\Admin\RemoteInboxNotifications;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
use Automattic\WooCommerce\Admin\DeprecatedClassFacade;
|
|
|
|
/**
|
|
* Rule processor that negates the rules in the rule's operand.
|
|
*
|
|
* @deprecated 8.8.0
|
|
*/
|
|
class NotRuleProcessor extends DeprecatedClassFacade {
|
|
/**
|
|
* The name of the non-deprecated class that this facade covers.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $facade_over_classname = 'Automattic\WooCommerce\Admin\RemoteSpecs\RuleProcessors\NotRuleProcessor';
|
|
|
|
/**
|
|
* The version that this class was deprecated in.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected static $deprecated_in_version = '8.8.0';
|
|
}
|