Completed
Push — unused-compiler-pass ( 93ebf5 )
by Kamil
31:23 queued 11:08
created
src/Sylius/Bundle/CoreBundle/EventListener/ShopUserLogoutHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     public function onLogoutSuccess(Request $request)
57 57
     {
58 58
         $channel = $this->channelContext->getChannel();
59
-        $this->session->remove('_sylius.cart.'.$channel->getCode());
59
+        $this->session->remove('_sylius.cart.' . $channel->getCode());
60 60
 
61 61
         return parent::onLogoutSuccess($request);
62 62
     }
Please login to merge, or discard this patch.
CoreBundle/spec/Form/EventSubscriber/ChannelPricingsFormSubscriberSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
         $productVariant->getChannelPricings()->willReturn(new ArrayCollection([
88 88
                 $channelPricingWithPrice->getWrappedObject(),
89 89
                 $channelPricingWithoutPrice->getWrappedObject(),
90
-        ]));;
90
+        ])); ;
91 91
         $channelPricingWithoutPrice->getPrice()->willReturn(null);
92 92
         $channelPricingWithPrice->getPrice()->willReturn(123);
93 93
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/PaymentBundle/test/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function registerContainerConfiguration(LoaderInterface $loader)
46 46
     {
47
-        $loader->load(__DIR__.'/config/config.yml');
47
+        $loader->load(__DIR__ . '/config/config.yml');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/PaymentBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Composer\Autoload\ClassLoader;
13 13
 use Doctrine\Common\Annotations\AnnotationRegistry;
14 14
 
15
-$loader = require __DIR__.'/../../vendor/autoload.php';
15
+$loader = require __DIR__ . '/../../vendor/autoload.php';
16 16
 
17
-require __DIR__.'/AppKernel.php';
17
+require __DIR__ . '/AppKernel.php';
18 18
 
19 19
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/test/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function registerContainerConfiguration(LoaderInterface $loader)
46 46
     {
47
-        $loader->load(__DIR__.'/config/config.yml');
47
+        $loader->load(__DIR__ . '/config/config.yml');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Composer\Autoload\ClassLoader;
13 13
 use Doctrine\Common\Annotations\AnnotationRegistry;
14 14
 
15
-$loader = require __DIR__.'/../../vendor/autoload.php';
15
+$loader = require __DIR__ . '/../../vendor/autoload.php';
16 16
 
17
-require __DIR__.'/AppKernel.php';
17
+require __DIR__ . '/AppKernel.php';
18 18
 
19 19
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/TaxationBundle/test/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function registerContainerConfiguration(LoaderInterface $loader)
46 46
     {
47
-        $loader->load(__DIR__.'/config/config.yml');
47
+        $loader->load(__DIR__ . '/config/config.yml');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/TaxationBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Composer\Autoload\ClassLoader;
13 13
 use Doctrine\Common\Annotations\AnnotationRegistry;
14 14
 
15
-$loader = require __DIR__.'/../../vendor/autoload.php';
15
+$loader = require __DIR__ . '/../../vendor/autoload.php';
16 16
 
17
-require __DIR__.'/AppKernel.php';
17
+require __DIR__ . '/AppKernel.php';
18 18
 
19 19
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/LocaleBundle/test/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function registerContainerConfiguration(LoaderInterface $loader)
46 46
     {
47
-        $loader->load(__DIR__.'/config/config.yml');
47
+        $loader->load(__DIR__ . '/config/config.yml');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.