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

View File

@@ -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();
}