*/ protected array $arguments = []; /** * @param array $arguments */ public function arguments(array $arguments): static { $this->arguments = $arguments; return $this; } /** * @return array */ public function getArguments(): array { return $this->arguments; } public function resetArguments(): static { $this->arguments([]); return $this; } }