Example #1
0
 /**
  * @ParamConverter("category")
  */
 public function categoryAction(Request $request, Category $category)
 {
     return $this->render(':recipe:category.html.twig', ['recipes' => $category->getDrinks((int) $request->query->get(SearchController::PARAM_START, 0)), 'category' => $category]);
 }