diff --git a/src/Request.php b/src/Request.php index f07b2ee..33f4314 100644 --- a/src/Request.php +++ b/src/Request.php @@ -114,7 +114,7 @@ protected function parseHeaders(string $headers): array */ public function account(string $method, string $uri, string|array $parameters = [], array $headers = []): array { - return $this->send($method, self::ACCOUNT_URL . $uri, $parameters, $headers); + return $this->send($method, static::ACCOUNT_URL . $uri, $parameters, $headers); } /** @@ -136,7 +136,7 @@ public function account(string $method, string $uri, string|array $parameters = */ public function api(string $method, string $uri, string|array $parameters = [], array $headers = []): array { - return $this->send($method, self::API_URL . $uri, $parameters, $headers); + return $this->send($method, static::API_URL . $uri, $parameters, $headers); } /**