Completed
Push — snake-case-tests ( 55729f )
by Kamil
87:29 queued 51:35
created
src/Sylius/Bundle/CoreBundle/Fixture/Factory/ChannelExampleFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     ) {
72 72
         $this->channelFactory = $channelFactory;
73 73
         $this->localeRepository = $localeRepository;
74
-        $this->currencyRepository= $currencyRepository;
74
+        $this->currencyRepository = $currencyRepository;
75 75
         $this->zoneRepository = $zoneRepository;
76 76
 
77 77
         $this->faker = \Faker\Factory::create();
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/InstallCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
                     count($this->commands),
77 77
                     $command['message']
78 78
                 ));
79
-                $this->commandExecutor->runCommand('sylius:install:'.$command['command'], [], $output);
79
+                $this->commandExecutor->runCommand('sylius:install:' . $command['command'], [], $output);
80 80
             } catch (RuntimeException $exception) {
81 81
                 $errored = true;
82 82
             }
Please login to merge, or discard this patch.
src/Sylius/Bundle/TaxonomyBundle/Doctrine/ORM/TaxonRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
             ->innerJoin('o.translations', 'translation')
121 121
             ->andWhere('translation.name LIKE :name')
122 122
             ->andWhere('translation.locale = :locale')
123
-            ->setParameter('name', '%'.$phrase.'%')
123
+            ->setParameter('name', '%' . $phrase . '%')
124 124
             ->setParameter('locale', $locale)
125 125
             ->getQuery()
126 126
             ->getResult()
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/Admin/ManagingProductVariantsContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
      */
166 166
     public function iSetItsPriceTo($price = null, $channelName = null)
167 167
     {
168
-        $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') :$channelName);
168
+        $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') : $channelName);
169 169
     }
170 170
 
171 171
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/AddressingBundle/Form/Type/CountryChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
                      * PHP 5.* bug, fixed in PHP 7: https://bugs.php.net/bug.php?id=50688
54 54
                      * "usort(): Array was modified by the user comparison function"
55 55
                      */
56
-                    @usort($countries, function($a, $b) {
56
+                    @usort($countries, function ($a, $b) {
57 57
                         return $a->getName() < $b->getName() ? -1 : 1;
58 58
                     });
59 59
 
Please login to merge, or discard this patch.