String className = annotation.getClassName();
if (className.startsWith(SymfonyCoreConstants.TEMPLATE_ANNOTATION)) {
currentAnnotationPath = AnnotationUtils.extractTemplate(annotation, bundle, controller, action);
} else if (className.startsWith(SymfonyCoreConstants.ROUTE_ANNOTATION)) {
Route route = AnnotationUtils.extractRoute(annotation, bundle, controller, action);
routes.push(route);
}
}
for (Object argument : currentMethod.getArguments()) {