You are here

public function ConditionInterface::process in Business Rules 2.x

Same name and namespace in other branches
  1. 8 src/ConditionInterface.php \Drupal\business_rules\ConditionInterface::process()

Process the condition.

Parameters

\Drupal\business_rules\Events\BusinessRulesEvent $event: The event that has triggered the condition.

Return value

bool Boolean value that indicates if the condition is true.

Throws

\ReflectionException

1 method overrides ConditionInterface::process()
Condition::process in src/Entity/Condition.php
Process the condition.

File

src/ConditionInterface.php, line 102

Class

ConditionInterface
Provides an interface for defining Condition entities.

Namespace

Drupal\business_rules

Code

public function process(BusinessRulesEvent $event);