Skip to content

Commit 8c66021

Browse files
authored
fix: php 8.3 deprecated get_class method call without argument (#2509)
1 parent a6408fe commit 8c66021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/REST.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public static function execute(
5555
$runner = new Runner(
5656
$config,
5757
sprintf('%s %s', $request->getMethod(), (string) $request->getUri()),
58-
[get_class(), 'doExecute'],
58+
[self::class, 'doExecute'],
5959
[$client, $request, $expectedClass]
6060
);
6161

0 commit comments

Comments
 (0)