fixed asbtract api typos.

This commit is contained in:
Tony Roy 2021-03-12 15:57:29 -04:00
commit a42effc0e1

View file

@ -25,7 +25,7 @@ abstract class AbstractApi implements ApiInterface
*/
protected function get($path, $parameters)
{
return $this->client->getHttpClient()->get($path, $parameters));
return $this->client->getHttpClient()->get($path, $parameters);
}
/**
@ -35,7 +35,7 @@ abstract class AbstractApi implements ApiInterface
*/
protected function post($path, $parameters)
{
return $this->client->getHttpClient()->post($path, $parameters));
return $this->client->getHttpClient()->post($path, $parameters);
}
/**
@ -45,7 +45,7 @@ abstract class AbstractApi implements ApiInterface
*/
protected function put($path, $parameters)
{
return $this->client->getHttpClient()->put($path, $parameters));
return $this->client->getHttpClient()->put($path, $parameters);
}
/**
@ -55,6 +55,6 @@ abstract class AbstractApi implements ApiInterface
*/
protected function delete($path, $parameters)
{
return $this->client->getHttpClient()->delete($path, $parameters));
return $this->client->getHttpClient()->delete($path, $parameters);
}
}