You've already forked symfony-playground
dump
This commit is contained in:
@ -47,12 +47,9 @@ class IndexController extends AbstractController
|
||||
MerBeDMRepository $repoDm
|
||||
): Response
|
||||
{
|
||||
dump('MerServiceRepository->findByOfferId');
|
||||
dump($repo->findByOfferId($request->query->get('offer_id')));
|
||||
|
||||
dump('MerBeDMRepository->findByOfferId');
|
||||
dump($repoDm->findByOfferId($request->query->get('offer_id')));
|
||||
|
||||
return $this->render('index/notificationDm.html.twig');
|
||||
return $this->render('index/notificationDm.html.twig', [
|
||||
'serviceRepo' => $repo->findByOfferId($request->query->get('offer_id')),
|
||||
'beDmRepo' => $repoDm->findByOfferId($request->query->get('offer_id'))
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user