From 49a6611b9cf208954363843381d345d94971bfea Mon Sep 17 00:00:00 2001 From: mike-ionut-mihai-sandu-tao Date: Tue, 9 Mar 2021 10:30:53 +0100 Subject: [PATCH] fix: fixed strong type for has --- common/oatbox/service/ServiceManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/oatbox/service/ServiceManager.php b/common/oatbox/service/ServiceManager.php index a45b75934..6734c9872 100644 --- a/common/oatbox/service/ServiceManager.php +++ b/common/oatbox/service/ServiceManager.php @@ -139,7 +139,7 @@ private function tryAutowiring($serviceId, $serviceKey) * (non-PHPdoc) * @see ContainerInterface::has() */ - public function has($serviceKey) + public function has($serviceKey): bool { if (isset($this->services[$serviceKey])) { return true;