Skip to content

Commit 80c962e

Browse files
committed
Fix typehint
1 parent be42eb0 commit 80c962e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/GaletteEvents/Booking.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ private function loadFromRS(ArrayObject $r): void
133133
$this->payment_method = (int)$r->payment_method;
134134
$this->bank_name = $r->bank_name;
135135
$this->check_number = $r->check_number;
136-
$this->number_people = $r->number_people;
136+
$this->number_people = (int)$r->number_people;
137137
$this->comment = $r->comment;
138138
}
139139

0 commit comments

Comments
 (0)