@@ -158,7 +158,7 @@ |
||
| 158 | 158 | public function filterProductTaxonsByTaxon(TaxonInterface $taxon) |
| 159 | 159 | { |
| 160 | 160 | return $this->productTaxons->filter(function ($productTaxon) use ($taxon) { |
| 161 | - return $taxon === $productTaxon->getTaxon(); |
|
| 161 | + return $taxon === $productTaxon->getTaxon(); |
|
| 162 | 162 | }); |
| 163 | 163 | } |
| 164 | 164 | |
@@ -85,7 +85,7 @@ |
||
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | return $this->repository->findAll(); |
| 88 | - }, |
|
| 88 | + }, |
|
| 89 | 89 | 'choice_value' => 'code', |
| 90 | 90 | 'choice_label' => 'name', |
| 91 | 91 | 'choice_translation_domain' => false, |
@@ -31,28 +31,28 @@ |
||
| 31 | 31 | 'label' => 'sylius.form.credit_card.type', |
| 32 | 32 | 'expanded' => true, |
| 33 | 33 | 'choices_as_values' => true, |
| 34 | - ]) |
|
| 35 | - ->add('cardholderName', TextType::class, [ |
|
| 34 | + ]) |
|
| 35 | + ->add('cardholderName', TextType::class, [ |
|
| 36 | 36 | 'label' => 'sylius.form.credit_card.cardholder_name', |
| 37 | - ]) |
|
| 38 | - ->add('number', TextType::class, [ |
|
| 39 | - 'label' => 'sylius.form.credit_card.number', |
|
| 40 | - ]) |
|
| 41 | - ->add('securityCode', TextType::class, [ |
|
| 42 | - 'label' => 'sylius.form.credit_card.security_code', |
|
| 43 | - ]) |
|
| 44 | - ->add('expiryMonth', ChoiceType::class, [ |
|
| 45 | - 'choices' => $this->getMonthChoices(), |
|
| 46 | - 'choice_translation_domain' => false, |
|
| 47 | - 'label' => 'sylius.form.credit_card.expiry_month', |
|
| 48 | - 'choices_as_values' => true, |
|
| 49 | - ]) |
|
| 50 | - ->add('expiryYear', ChoiceType::class, [ |
|
| 51 | - 'choices' => $this->getViableYears(), |
|
| 52 | - 'choice_translation_domain' => false, |
|
| 53 | - 'label' => 'sylius.form.credit_card.expiry_year', |
|
| 54 | - 'choices_as_values' => true, |
|
| 55 | - ]) |
|
| 37 | + ]) |
|
| 38 | + ->add('number', TextType::class, [ |
|
| 39 | + 'label' => 'sylius.form.credit_card.number', |
|
| 40 | + ]) |
|
| 41 | + ->add('securityCode', TextType::class, [ |
|
| 42 | + 'label' => 'sylius.form.credit_card.security_code', |
|
| 43 | + ]) |
|
| 44 | + ->add('expiryMonth', ChoiceType::class, [ |
|
| 45 | + 'choices' => $this->getMonthChoices(), |
|
| 46 | + 'choice_translation_domain' => false, |
|
| 47 | + 'label' => 'sylius.form.credit_card.expiry_month', |
|
| 48 | + 'choices_as_values' => true, |
|
| 49 | + ]) |
|
| 50 | + ->add('expiryYear', ChoiceType::class, [ |
|
| 51 | + 'choices' => $this->getViableYears(), |
|
| 52 | + 'choice_translation_domain' => false, |
|
| 53 | + 'label' => 'sylius.form.credit_card.expiry_year', |
|
| 54 | + 'choices_as_values' => true, |
|
| 55 | + ]) |
|
| 56 | 56 | ; |
| 57 | 57 | } |
| 58 | 58 | |