Skip to content

Commit

Permalink
feat(scraper): can return string
Browse files Browse the repository at this point in the history
  • Loading branch information
rem42 committed Mar 17, 2021
1 parent 5d22094 commit 1d1d040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Api/ApiInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
interface ApiInterface
{
/**
* @return array<object>|bool|object
* @return array<object>|bool|object|string
*/
public function execute();
}
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct(HttpClientInterface $httpClient)
}

/**
* @return array<object>|bool|object
* @return array<object>|bool|object|string
*/
public function send(ScraperRequest $request)
{
Expand Down

0 comments on commit 1d1d040

Please sign in to comment.