Added missing type-hints, #11700

pull/11701/head
Roland Häder 2022-07-01 02:50:03 +02:00
parent ef5d178e00
commit 3326c4cb31
No known key found for this signature in database
GPG Key ID: C82EDE5DDFA0BA77
1 changed files with 2 additions and 2 deletions

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