You are here

public function RulesCondition::__sleep in Rules 7.2

Overrides RulesAbstractPlugin::__sleep

File

includes/rules.plugins.inc, line 118
Contains plugin info and implementations not needed for rule evaluation.

Class

RulesCondition
Implements a rules condition.

Code

public function __sleep() {
  return parent::__sleep() + array(
    'negate' => 'negate',
  );
}