Skip to content

Commit

Permalink
change retrieve method back to public
Browse files Browse the repository at this point in the history
also retrieve in the examples is used as public
  • Loading branch information
kasparsj authored May 15, 2022
1 parent 5d2a17e commit b98d7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Scopus/ScopusApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function query($query)
* @return array|Abstracts|Author|SearchResults|CitationCount[]
* @throws Exception
*/
private function retrieve($uri, array $options = [])
public function retrieve($uri, array $options = [])
{
$response = $this->client->get($uri, $options);
if ($response->getStatusCode() === 200) {
Expand Down

0 comments on commit b98d7c8

Please sign in to comment.