Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
VennDev authored Jul 9, 2023
1 parent 3e68685 commit b1e3894
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vennv/Internet.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public static function simpleCurl(

$curlHandle = curl_init($page);

if ($curlHandle === false)
if ($curlHandle === false)
{
throw new InternetException(
"Unable to create new cURL session"
Expand Down Expand Up @@ -191,7 +191,7 @@ public static function simpleCurl(
$body = substr($raw, $headerSize);
$headers = [];

foreach (explode("\r\n\r\n", $rawHeaders) as $rawHeaderGroup)
foreach (explode("\r\n\r\n", $rawHeaders) as $rawHeaderGroup)
{
$headerGroup = [];

Expand All @@ -214,7 +214,7 @@ public static function simpleCurl(
$onSuccess($curlHandle);
}

return new InternetRequestResult($headers, $body, $httpCode);
return new InternetRequestResult($headers, $body, $httpCode);
}
finally
{
Expand Down

0 comments on commit b1e3894

Please sign in to comment.