method = $method; $this->parameters = $parameters; } /** * @return string */ public function getMethod(): string { return $this->method; } /** * @return array */ public function getParameters(): array { return $this->parameters; } }