Merge pull request #11701 from Quix0r/fixes/missing-type-hints-getstart

Added missing type-hints
This commit is contained in:
Tobias Diekershoff 2022-07-01 06:40:54 +02:00 committed by GitHub
commit da7bc082b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,12 +73,12 @@ class BoundariesPager extends Pager
} }
} }
public function getStart() public function getStart(): int
{ {
throw new \BadMethodCallException(); throw new \BadMethodCallException();
} }
public function getPage() public function getPage(): int
{ {
throw new \BadMethodCallException(); throw new \BadMethodCallException();
} }