function = $function; $this->args = $args; } /** * {@inheritdoc} */ public function run(Environment $environment) { return ($this->function)(...$this->args); } public function getArgs() { return $this->args; } }