Completed
Push — symfony3 ( e0eba1...5b1113 )
by Kamil
18:43
created
CoreBundle/Form/Type/Pricing/ChannelAndCurrencyBasedConfigurationType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
          */
58 58
         foreach ($this->channelRepository->findAll() as $channel) {
59 59
             foreach ($this->currencyRepository->findAll() as $currency) {
60
-                $builder->add($channel->getCode().$options['delimiter'].$currency->getCode(), MoneyType::class, [
60
+                $builder->add($channel->getCode() . $options['delimiter'] . $currency->getCode(), MoneyType::class, [
61 61
                     'label' => sprintf('%s %s', $channel->getName(), $currency->getCode())
62 62
                 ]);
63 63
             }
Please login to merge, or discard this patch.