From 49807348247144f87ebfcefb7dbdc220ac12270b Mon Sep 17 00:00:00 2001 From: adhamiamirhossein Date: Tue, 10 Oct 2023 18:17:26 +0330 Subject: [PATCH] fix: php 8.3 deprecated get_class method call without argument --- src/Http/REST.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/REST.php b/src/Http/REST.php index 1519f60da..70e48e4b8 100644 --- a/src/Http/REST.php +++ b/src/Http/REST.php @@ -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] );