Skip to content

Commit

Permalink
fix: php 8.3 deprecated get_class method call without argument (#2509)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmooAti committed Dec 15, 2023
1 parent a6408fe commit 8c66021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/REST.php
Expand Up @@ -55,7 +55,7 @@ public static function execute(
$runner = new Runner(
$config,
sprintf('%s %s', $request->getMethod(), (string) $request->getUri()),
[get_class(), 'doExecute'],
[self::class, 'doExecute'],
[$client, $request, $expectedClass]
);

Expand Down

0 comments on commit 8c66021

Please sign in to comment.