get_matcher() public method

Gets the UrlMatcher instance associated with this Router.
public get_matcher ( ) : Symfony\Component\Routing\Matcher\UrlMatcherInterface
return Symfony\Component\Routing\Matcher\UrlMatcherInterface A UrlMatcherInterface instance
コード例 #1
0
ファイル: router.php プロジェクト: MrAdder/phpbb
 public function get_matcher()
 {
     $this->create_new_url_matcher();
     return parent::get_matcher();
 }