callable = $callable(...); return $this; } public function setArgs(array $args): Define\Repository\Factory { $this->args = $args; return $this; } public function run(): mixed { return call_user_func_array($this->callable, $this->args); } }