From 9d47755fd8ac1739c8ca173fd5de2579a63c28b4 Mon Sep 17 00:00:00 2001 From: Dante <35383529+srdante@users.noreply.github.com> Date: Tue, 30 Nov 2021 22:27:57 -0300 Subject: [PATCH] Update Program.php --- src/Program.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Program.php b/src/Program.php index 17324af..28e214a 100644 --- a/src/Program.php +++ b/src/Program.php @@ -14,7 +14,7 @@ public function __construct(SolanaRpcClient $client) $this->client = $client; } - public function __call($method, $params = []): ?array + public function __call($method, $params = []) { return $this->client->call($method, ...$params); }