diff --git a/trunk/src/AppBundle/Form/BookingRequestType.php b/trunk/src/AppBundle/Form/BookingRequestType.php index fe0777b1..665f4883 100644 --- a/trunk/src/AppBundle/Form/BookingRequestType.php +++ b/trunk/src/AppBundle/Form/BookingRequestType.php @@ -108,7 +108,7 @@ class BookingRequestType extends AbstractType $builder ->add('salutation', ChoiceType::class, [ - 'placeholder' => 'Anrede (Bitte wählen) *', + //'placeholder' => 'Anrede (Bitte wählen) *', 'choices' => self::$SALUTATION_CHOICES, 'constraints' => [ new NotNull(), diff --git a/trunk/src/AppBundle/Form/TravelerType.php b/trunk/src/AppBundle/Form/TravelerType.php index fe9e8ef3..f0cc41e7 100644 --- a/trunk/src/AppBundle/Form/TravelerType.php +++ b/trunk/src/AppBundle/Form/TravelerType.php @@ -41,7 +41,7 @@ class TravelerType extends AbstractType { $builder ->add('sex', ChoiceType::class, [ - 'placeholder' => 'Geschlecht (Bitte wählen) *', + //'placeholder' => 'Geschlecht (Bitte wählen) *', 'choices' => self::$SEX_CHOICES, 'constraints' => [ new Choice(['choices' => self::$SEX_CHOICES]) diff --git a/trunk/src/AppBundle/Validator/Constraints/BookingRequestValidator.php b/trunk/src/AppBundle/Validator/Constraints/BookingRequestValidator.php index 878d9f03..935d4fcf 100644 --- a/trunk/src/AppBundle/Validator/Constraints/BookingRequestValidator.php +++ b/trunk/src/AppBundle/Validator/Constraints/BookingRequestValidator.php @@ -6,7 +6,7 @@ namespace AppBundle\Validator\Constraints; -//use AppBundle\Entity\BookingRequest; +use AppBundle\Entity\BookingRequest; use AppBundle\Entity\TravelDate; use AppBundle\Entity\TravelProgram; use AppBundle\Form\BookingRequestType;