Skip to content

Commit

Permalink
Update RouteNameMatcher.php
Browse files Browse the repository at this point in the history
  • Loading branch information
reindert-vetter authored Jan 13, 2022
1 parent 0a718cc commit c57c8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helper/RouteNameMatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function __construct(Request $request)
public function match(string $key): bool
{
$names = explode('|', $key);
$routeName = $this->request->route()->getName()
$routeName = $this->request->route()->getName();
if ($routeName === null) {
return false;
}
Expand Down

0 comments on commit c57c8ff

Please sign in to comment.