From cd018852ac5c917b928f3a8f02b784ebb0c8d486 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Wed, 10 Aug 2022 16:40:45 -0400 Subject: [PATCH] Correct type declaration --- includes/Container.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Container.php b/includes/Container.php index b5bdcb0..6f4c706 100644 --- a/includes/Container.php +++ b/includes/Container.php @@ -415,7 +415,7 @@ public function rewind(): void { * * @return bool True on success or false on failure. */ - public function offsetExists( mixed $offset ): mixed { + public function offsetExists( mixed $offset ): bool { return $this->has( $offset ); }