Skip to content

Commit 75bffe0

Browse files
committed
RouteList::match() is final (BC break)
1 parent a00237d commit 75bffe0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Routing/RouteList.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ public function __construct()
3838

3939
/**
4040
* Maps HTTP request to an array.
41-
* @final
4241
*/
43-
public function match(Nette\Http\IRequest $httpRequest): ?array
42+
final public function match(Nette\Http\IRequest $httpRequest): ?array
4443
{
4544
if ($httpRequest = $this->prepareRequest($httpRequest)) {
4645
foreach ($this->list as [$router]) {

0 commit comments

Comments
 (0)