| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 33 | public function menuAction(Request $request) |
||
| 34 | { |
||
| 35 | $em = $this->getDoctrine()->getManager(); |
||
| 36 | $categoryEntity = $em->getRepository('AppBundle\Entity\Category'); |
||
| 37 | $categories = $categoryEntity->childrenHierarchy(); |
||
| 38 | return $this->render("AppBundle::includes/menu.html.twig", ['links' => $categories]); |
||
| 39 | } |
||
| 40 | |||
| 41 | } |