Closed hilgroth closed 7 years ago
Replaced PHP7+ syntax: ($this->closure)();
($this->closure)();
With a PHP56+ compatible syntax: call_user_func($this->closure);
call_user_func($this->closure);
Replaced PHP7+ syntax:
($this->closure)();
With a PHP56+ compatible syntax:
call_user_func($this->closure);