You are here

public function RulesPlugin::destroy in Rules 7.2

Removes circular object references so PHP garbage collector can work.

1 call to RulesPlugin::destroy()
RulesContainerPlugin::destroy in includes/rules.core.inc
Removes circular object references so PHP garbage collector can work.
1 method overrides RulesPlugin::destroy()
RulesContainerPlugin::destroy in includes/rules.core.inc
Removes circular object references so PHP garbage collector can work.

File

includes/rules.core.inc, line 1287
Rules base classes and interfaces needed for any rule evaluation.

Class

RulesPlugin
Base class for rules plugins.

Code

public function destroy() {
  parent::destroy();
  $this->parent = NULL;
}