Skip to content

Commit

Permalink
fix styleci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vrobert78 committed Jan 18, 2024
1 parent 6ec7c33 commit ceeb576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Communication/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ public function __construct($socketClient, LoggerInterface $logger = null, int $
}

$curl = \curl_init($configURL);
\curl_setopt($curl, CURLOPT_URL, $configURL);
\curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
\curl_setopt($curl, \CURLOPT_URL, $configURL);
\curl_setopt($curl, \CURLOPT_RETURNTRANSFER, true);
$resp = \curl_exec($curl);
\curl_close($curl);

Expand Down

0 comments on commit ceeb576

Please sign in to comment.