From: Roland Häder Date: Fri, 1 Jul 2022 00:50:03 +0000 (+0200) Subject: Added missing type-hints, #11700 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3326c4cb31400bad1569e01a7ec3222deb1dda22;p=friendica.git Added missing type-hints, #11700 --- 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(); }