Skip to content

Commit

Permalink
Fix PHP 8.4 deprecations in Proxy class
Browse files Browse the repository at this point in the history
  • Loading branch information
SerafimArts authored Aug 14, 2024
1 parent b3ff5c1 commit bf3dec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ abstract class Proxy implements ApiInterface
/**
* @param \FFI|null $ffi
*/
public function __construct(\FFI $ffi = null)
public function __construct(?\FFI $ffi = null)
{
if ($ffi !== null) {
$this->ffi = $ffi;
Expand Down

0 comments on commit bf3dec3

Please sign in to comment.