コード例 #1
0
ファイル: Manager.php プロジェクト: steve-todorov/drest
 /**
  * Get all possible match routes for this request
  * @param  boolean $matchVerb - Whether you want to match the route using the request HTTP verb
  * @return array   of Drest\Mapping\RouteMetaData object
  */
 protected function getMatchedRoutes($matchVerb = true)
 {
     return $this->router->getMatchedRoutes($this->request, (bool) $matchVerb);
 }