From c58d19072921e88e42596cdada7534592d09cbce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vil=C3=A0?= Date: Mon, 12 Dec 2022 16:12:07 +0100 Subject: [PATCH] Fix MissingTemplateParam error --- src/Paginator/Adapter/Collection.php | 1 + src/Paginator/Adapter/Selectable.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Paginator/Adapter/Collection.php b/src/Paginator/Adapter/Collection.php index 90e45bc9..a05664c7 100644 --- a/src/Paginator/Adapter/Collection.php +++ b/src/Paginator/Adapter/Collection.php @@ -13,6 +13,7 @@ /** * @psalm-template TKey of array-key * @psalm-template T + * @template-implements AdapterInterface */ class Collection implements AdapterInterface { diff --git a/src/Paginator/Adapter/Selectable.php b/src/Paginator/Adapter/Selectable.php index 863f424b..649b9ad4 100644 --- a/src/Paginator/Adapter/Selectable.php +++ b/src/Paginator/Adapter/Selectable.php @@ -15,6 +15,7 @@ * * @template TKey of int * @template T + * @template-implements AdapterInterface */ class Selectable implements AdapterInterface {