From 9fb427dff643915e2372b741b95591cd4e884f21 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Tue, 30 Nov 2021 11:55:25 -0500 Subject: [PATCH] Update method interface to match newer PSR interface --- src/Teller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Teller.php b/src/Teller.php index 846f009..9354d65 100644 --- a/src/Teller.php +++ b/src/Teller.php @@ -121,7 +121,7 @@ class Teller implements SimpleCache\CacheInterface, LoggerAwareInterface { * MUST be thrown if $keys is neither an array nor a Traversable, * or if any of the $keys are not a legal value. */ - public function getMultiple($keys, $default = null) + public function getMultiple(iterable $keys, mixed $default = null): iterable { // Check type of keys if ( ! is_iterable($keys))