public function NestedMatcher::setFinalMatcher in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony-cmf/routing/NestedMatcher/NestedMatcher.php \Symfony\Cmf\Component\Routing\NestedMatcher\NestedMatcher::setFinalMatcher()
Sets the final matcher for the matching plan.
Parameters
FinalMatcherInterface $final The final matcher that will have to: pick the route that will be used.
Return value
NestedMatcher this object to have a fluent interface
1 call to NestedMatcher::setFinalMatcher()
- NestedMatcher::__construct in vendor/
symfony-cmf/ routing/ NestedMatcher/ NestedMatcher.php - Constructs a new NestedMatcher
File
- vendor/
symfony-cmf/ routing/ NestedMatcher/ NestedMatcher.php, line 129
Class
- NestedMatcher
- A more flexible approach to matching. The route collection to match against can be dynamically determined based on the request and users can inject their own filters or use a custom final matching strategy.
Namespace
Symfony\Cmf\Component\Routing\NestedMatcherCode
public function setFinalMatcher(FinalMatcherInterface $final) {
$this->finalMatcher = $final;
return $this;
}