Skip to content

Commit

Permalink
Merge pull request #72 from endsoonconfess/fix-undeclared-property-as…
Browse files Browse the repository at this point in the history
…signment-deprecation

Fix: Dynamic property Request::$curl assignment is deprecated in PHP 8.2
  • Loading branch information
anlutro authored Jun 27, 2023
2 parents 6f40b7a + 62e8bdf commit 1c56976
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ class Request
'options' => false,
);

/**
* cURL wrapper instance
*
* @var cURL
*/
private $curl;

/**
* The HTTP method to use. Defaults to GET.
*
Expand Down

0 comments on commit 1c56976

Please sign in to comment.