From dfd7e797307b63b3ad193949d30611cd50b0d199 Mon Sep 17 00:00:00 2001 From: "S.O" <40216653+SoftwareOnbekend@users.noreply.github.com> Date: Sun, 16 Apr 2023 20:37:46 +0200 Subject: [PATCH] Update Client.php Removed :void as returning reference. At line 59 This is deprecated as of PHP 8.1.0 https://www.php.net/manual/en/language.types.declarations.php --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 26bb553..b38b510 100644 --- a/src/Client.php +++ b/src/Client.php @@ -56,7 +56,7 @@ public function __construct(string $username, string $secCode1, string $secCode2 * * @throws EboekhoudenSoapException */ - protected function createSoapClient(): void + protected function createSoapClient() { if (! empty($this->soapClient) && ! empty($this->sessionId)) { return;