Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function getVenueAction() |
||
14 | { |
||
15 | $id = $this->get('request')->query->get('venue_id'); |
||
16 | $venue = $this->getDoctrine()->getRepository('AppBundle:Venue')->find($id); |
||
17 | |||
18 | return $this->render('AppBundle:PerformanceEventCRUD:venueHall.html.twig', [ |
||
19 | 'venue' => $venue, |
||
20 | ]); |
||
21 | } |
||
22 | |||
40 |