Rename function to camelCase

This commit is contained in:
Jannis Portmann 2021-07-10 12:46:44 +02:00
parent c7c0445a6b
commit 1758011412

View file

@ -75,7 +75,7 @@ class OfferController extends AbstractController
} }
#[Route('/offer/{id}', name: 'show_offer')] #[Route('/offer/{id}', name: 'show_offer')]
public function show_offer(Offering $offer, WishRepository $wishRepository, PlzToCoordinate $plzconverter, DistanceCalculator $distanceCalculator): Response public function showOffer(Offering $offer, WishRepository $wishRepository, PlzToCoordinate $plzconverter, DistanceCalculator $distanceCalculator): Response
{ {
$distance = 0; $distance = 0;
$user = $this->getUser(); $user = $this->getUser();