@@ -63,7 +63,7 @@ |
||
| 63 | 63 | |
| 64 | 64 | public function remove() |
| 65 | 65 | { |
| 66 | - $expiredCarts = $this->orderRepository->findCartsNotModifiedSince(new \DateTime('-'.$this->expirationPeriod)); |
|
| 66 | + $expiredCarts = $this->orderRepository->findCartsNotModifiedSince(new \DateTime('-' . $this->expirationPeriod)); |
|
| 67 | 67 | |
| 68 | 68 | $this->eventDispatcher->dispatch(SyliusExpiredCartsEvents::PRE_REMOVE, new GenericEvent($expiredCarts)); |
| 69 | 69 | |
@@ -30,10 +30,10 @@ |
||
| 30 | 30 | |
| 31 | 31 | $builder |
| 32 | 32 | ->add('firstName', TextType::class, [ |
| 33 | - 'label' => 'sylius.form.user.first_name', |
|
| 33 | + 'label' => 'sylius.form.user.first_name', |
|
| 34 | 34 | ]) |
| 35 | 35 | ->add('lastName', TextType::class, [ |
| 36 | - 'label' => 'sylius.form.user.last_name', |
|
| 36 | + 'label' => 'sylius.form.user.last_name', |
|
| 37 | 37 | ]) |
| 38 | 38 | ->add('localeCode', LocaleType::class, [ |
| 39 | 39 | 'label' => 'sylius.ui.locale', |
@@ -305,7 +305,7 @@ |
||
| 305 | 305 | do { |
| 306 | 306 | parent::tryToOpen($urlParameters); |
| 307 | 307 | sleep(3); |
| 308 | - } while(!$this->isOpen() && microtime(true) < $end); |
|
| 308 | + } while (!$this->isOpen() && microtime(true) < $end); |
|
| 309 | 309 | |
| 310 | 310 | return; |
| 311 | 311 | } |