Exemplo n.º 1
0
 /**
  * Get the route information for a given route.
  *
  * @param Route $route
  *
  * @return array|null
  */
 protected function getRouteInformation(Route $route)
 {
     $route = parent::getRouteInformation($route);
     if (!$route) {
         return;
     }
     // Separate method and URI
     list($methods, $uri) = explode(' ', $route['uri']);
     $route['methods'] = $methods;
     $route['uri'] = $uri;
     return $route;
 }