function RulesIdentifiableDataWrapper::clear

Overridden.

1 call to RulesIdentifiableDataWrapper::clear()
RulesIdentifiableDataWrapper::set in includes/rules.state.inc
Overridden to support setting the data by either the object or the id.

File

includes/rules.state.inc, line 760

Class

RulesIdentifiableDataWrapper
A wrapper class similar to the EntityDrupalWrapper, but for non-entities.

Code

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