fix: normalize form values for calculation

This commit is contained in:
Björn Fromme
2026-06-16 10:32:26 +02:00
parent 1a517f4584
commit 90a5fab2fa
@@ -431,7 +431,7 @@ class GroupsPriceInquiry
*/
public function getEffectivePax()
{
return max(30, $this->getPax() - $this->getChildren());
return max(30, (int) $this->getPax() - (int) $this->getChildren());
}
/**