Prepopulate configurator form

This commit is contained in:
Björn Fromme
2018-07-31 14:41:59 +02:00
parent 340261220c
commit 6160703361
5 changed files with 40 additions and 8 deletions
@@ -185,8 +185,12 @@ class Inquiry extends AbstractValueObject
public static function fromArguments($travelType = 0, $locationType = 0)
{
$inquiry = new self;
$inquiry->setTravelType((string) $travelType);
$inquiry->setLocationType((string) $locationType);
if ($travelType) {
$inquiry->setTravelType((string) $travelType);
}
if ($locationType) {
$inquiry->setLocationType((string) $locationType);
}
return $inquiry;
}