From 3326c4cb31400bad1569e01a7ec3222deb1dda22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Fri, 1 Jul 2022 02:50:03 +0200 Subject: [PATCH] Added missing type-hints, #11700 --- src/Content/BoundariesPager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Content/BoundariesPager.php b/src/Content/BoundariesPager.php index 248931d90e..df6ebf08a5 100644 --- a/src/Content/BoundariesPager.php +++ b/src/Content/BoundariesPager.php @@ -73,12 +73,12 @@ class BoundariesPager extends Pager } } - public function getStart() + public function getStart(): int { throw new \BadMethodCallException(); } - public function getPage() + public function getPage(): int { throw new \BadMethodCallException(); }