closure = $closure; } public function getClosure(): Closure { return $this->closure; } public function call(array $args) { return ($this->closure)(...$args); } }