Skip to content

Commit 1c56976

Browse files
authored
Merge pull request #72 from endsoonconfess/fix-undeclared-property-assignment-deprecation
Fix: Dynamic property Request::$curl assignment is deprecated in PHP 8.2
2 parents 6f40b7a + 62e8bdf commit 1c56976

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/Request.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ class Request
3636
'options' => false,
3737
);
3838

39+
/**
40+
* cURL wrapper instance
41+
*
42+
* @var cURL
43+
*/
44+
private $curl;
45+
3946
/**
4047
* The HTTP method to use. Defaults to GET.
4148
*

0 commit comments

Comments
 (0)