| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function indexAction(Request $request) |
||
| 16 | { |
||
| 17 | $organization = $this->getDoctrine()->getRepository(Organization::class)->find('a0ebb514-0fef-45ca-ac26-ff085087ce7b'); |
||
| 18 | |||
| 19 | dump($organization);die; |
||
| 20 | |||
| 21 | return $this->render('default/index.html.twig', [ |
||
| 22 | 'pages' => $pages, |
||
| 23 | ]); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.