Skip to content

Commit

Permalink
update image search option
Browse files Browse the repository at this point in the history
  • Loading branch information
zoranbogoevski committed Mar 7, 2024
1 parent 576449e commit 991f899
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/RssFeed.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ public function retrieveFullContent(string $postLink): bool|array
}


private function fetchContentUsingCurl(string $url): bool|string
/**
* @param string $url
* @return bool|string
*/
private function fetchContentUsingCurl(string $url)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
Expand Down

0 comments on commit 991f899

Please sign in to comment.