Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ jobs:
- php-version: "8.0"
symfony-require: "6.0.*"

- php-version: "8.1"
symfony-require: "6.0.*"

steps:
- name: "Checkout project"
uses: "actions/checkout@v2"
Expand Down
4 changes: 1 addition & 3 deletions src/PagedRouteCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,8 @@ public function rewind(): void

/**
* Gets the number of Routes in this collection.
*
* @return int The number of routes
*/
public function count()
public function count(): int
{
return $this->provider->getRoutesCount();
}
Expand Down