Example #1
0
 public function routeToRegex($from, $route)
 {
     $from = preg_replace('/%([a-z_]+)/', '(?P<\\1>[a-z0-9_]+)', $from);
     $from = parent::routeToRegex($from, $route);
     return $from;
 }