From 14569bd668ed91d6b166cab1d4fcca687d1d37b3 Mon Sep 17 00:00:00 2001 From: magdev Date: Fri, 13 Sep 2024 01:09:03 +0200 Subject: [PATCH] added type hints (oh, yeah - mixed for all) --- src/Client/RedmineClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client/RedmineClient.php b/src/Client/RedmineClient.php index 251d0e8..72f075f 100644 --- a/src/Client/RedmineClient.php +++ b/src/Client/RedmineClient.php @@ -29,7 +29,7 @@ final class RedmineClient } - public function __call($name, $arguments) + public function __call(mixed $name, mixed $arguments): mixed { if (!method_exists($this->client, $name)) { throw new \BadMethodCallException(sprintf(