fix: incorrect nesting of return statement

This commit is contained in:
Björn Fromme
2025-03-27 09:55:46 +01:00
parent 3e50355553
commit 485d37518f
+2 -2
View File
@@ -94,9 +94,9 @@ class Booking
if (in_array($participantIndex, $room->mapping)) {
return $room;
}
return null;
}
return null;
}
public function getPriceForParticipant(int $participantIndex): float