You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this does not work.
but if you change line in Rule.php;
public function execute(Context $context)
{
if ($this->evaluate($context) && isset($this->action)) {
if (!is_callable($this->action)) {
throw new \LogicException('Rule actions must be callable.');
}
**return** call_user_func($this->action);
}
The text was updated successfully, but these errors were encountered:
Would be nice to have the result back from the function in the Rule.
not really an issue but it makes the Ruler more complete :)
this does not work.
but if you change line in Rule.php;
The text was updated successfully, but these errors were encountered: