You are here

public function RulesConditionContainerTestStub::evaluate in Rules 8.3

Returns the final result after executing the conditions.

Overrides ConditionExpressionContainer::evaluate

File

tests/src/Unit/RulesConditionContainerTest.php, line 189

Class

RulesConditionContainerTestStub
Class used for overriding evaluate() as this does not work with PHPunit.

Namespace

Drupal\Tests\rules\Unit

Code

public function evaluate(ExecutionStateInterface $state) {
  return TRUE;
}