@@ -96,7 +96,7 @@ |
||
96 | 96 | */ |
97 | 97 | private function waitForElement($timeout, $elementName) |
98 | 98 | { |
99 | - $this->getDocument()->waitFor($timeout, function () use ($elementName){ |
|
99 | + $this->getDocument()->waitFor($timeout, function () use ($elementName) { |
|
100 | 100 | return $this->hasElement($elementName); |
101 | 101 | }); |
102 | 102 | } |
@@ -106,7 +106,8 @@ |
||
106 | 106 | * {@inheritdoc} |
107 | 107 | */ |
108 | 108 | public function getLatestProductsNames() |
109 | - {; |
|
109 | + { |
|
110 | +; |
|
110 | 111 | return array_map( |
111 | 112 | function (NodeElement $element) { return $element->getText(); }, |
112 | 113 | $this->getDocument()->findAll('css', '.sylius-product-name') |
@@ -24,7 +24,8 @@ |
||
24 | 24 | |
25 | 25 | final class UniqueSimpleProductCodeValidatorSpec extends ObjectBehavior |
26 | 26 | { |
27 | - function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository) { |
|
27 | + function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository) |
|
28 | + { |
|
28 | 29 | $this->beConstructedWith($productVariantRepository); |
29 | 30 | $this->initialize($context); |
30 | 31 | } |
@@ -55,7 +55,7 @@ |
||
55 | 55 | { |
56 | 56 | $this->getElement('save_configuration_button')->press(); |
57 | 57 | |
58 | - $this->getDocument()->waitFor(5, function (){ |
|
58 | + $this->getDocument()->waitFor(5, function () { |
|
59 | 59 | return false === $this->getElement('save_configuration_button')->hasClass('loading'); |
60 | 60 | } ); |
61 | 61 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | $this->shouldImplement(FormTypeInterface::class); |
41 | 41 | } |
42 | 42 | |
43 | - function it_adds_add_code_event_subscriber(FormBuilder $builder) |
|
43 | + function it_adds_add_code_event_subscriber(FormBuilder $builder) |
|
44 | 44 | { |
45 | 45 | $builder->add(Argument::any(), Argument::cetera())->willReturn($builder); |
46 | 46 |
@@ -47,7 +47,8 @@ |
||
47 | 47 | { |
48 | 48 | $resolver->setNormalizer('validation_groups', function (Options $options, array $validationGroups) { |
49 | 49 | return function (FormInterface $form) use ($validationGroups) { |
50 | - if ((bool) $form->get('promotionCoupon')->getNormData()) { // Validate the coupon if it was sent |
|
50 | + if ((bool) $form->get('promotionCoupon')->getNormData()) { |
|
51 | +// Validate the coupon if it was sent |
|
51 | 52 | $validationGroups[] = 'sylius_promotion_coupon'; |
52 | 53 | } |
53 | 54 |