From: Roland Häder Date: Fri, 17 Jun 2022 16:00:06 +0000 (+0200) Subject: Fixed incompatible types X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=51f43278d6c1e63ebdabff7d02167b7b9be42879;p=friendica.git Fixed incompatible types --- diff --git a/tests/Util/AppDouble.php b/tests/Util/AppDouble.php index 1288ec68be..28689425a2 100644 --- a/tests/Util/AppDouble.php +++ b/tests/Util/AppDouble.php @@ -43,7 +43,7 @@ class AppDouble extends App $this->isLoggedIn = $isLoggedIn; } - public function isLoggedIn() + public function isLoggedIn(): bool { return $this->isLoggedIn; }