We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
laravel-airtable/src/Api/AirtableApiClient.php
Line 30 in de9d66a
In the construct the parameter $client is asking for Http object, but $this->client by default will receive a PendingRequest.
If it's provided with a new Http client will explode.
Has an example in the function get() of the same class, return $this->decodeResponse($this->client->get($url));
return $this->decodeResponse($this->client->get($url));
Http object isn't accessible this way.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
laravel-airtable/src/Api/AirtableApiClient.php
Line 30 in de9d66a
In the construct the parameter $client is asking for Http object, but $this->client by default will receive a PendingRequest.
If it's provided with a new Http client will explode.
Has an example in the function get() of the same class,
return $this->decodeResponse($this->client->get($url));
Http object isn't accessible this way.
The text was updated successfully, but these errors were encountered: