git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3394 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
adametz 2018-05-22 15:35:56 +00:00
parent a3cf3a921d
commit cc0c353e1a
17 changed files with 658 additions and 489 deletions

View file

@ -97,6 +97,14 @@ class BookingRequest
*/
private $acceptTerms = false;
/*
private $acceptEntryRequirements = false;
private $acceptLegalRights = false;
*/
private $acceptPrivacy = false;
/**
* BookingRequest constructor.
*/
@ -617,6 +625,61 @@ class BookingRequest
$this->acceptTerms = $acceptTerms;
}
/**
* @return mixed
*/
/*
public function isAcceptEntryRequirements()
{
return $this->acceptEntryRequirements;
}
*/
/**
* @param mixed $acceptEntryRequirements
*/
/*
public function setAcceptEntryRequirements($acceptEntryRequirements)
{
$this->acceptEntryRequirements = $acceptEntryRequirements;
}
*/
/**
* @return mixed
*/
/*
public function isAcceptLegalRights()
{
return $this->acceptLegalRights;
}
*/
/**
* @param mixed $acceptLegalRights
*/
/*
public function setAcceptLegalRights($acceptLegalRights)
{
$this->acceptLegalRights = $acceptLegalRights;
}
*/
/**
* @return mixed
*/
public function isAcceptPrivacy()
{
return $this->acceptPrivacy;
}
/**
* @param mixed $acceptPrivacy
*/
public function setAcceptPrivacy($acceptPrivacy)
{
$this->acceptPrivacy = $acceptPrivacy;
}
/**
* @Assert\Callback
*/