Completed
Push — scalar-types/registry ( 38a5a0 )
by Kamil
75:54 queued 51:59
created
Sylius/Bundle/MailerBundle/spec/Renderer/Adapter/EmailTwigAdapterSpec.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Bundle\MailerBundle\Renderer\Adapter;
15 15
 
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
         $email->getTemplate()->shouldBeCalled()->willReturn('MyTemplate');
50 50
         $twig->loadTemplate('MyTemplate')->shouldBeCalled()->willReturn($template);
51 51
 
52
-        $template->renderBlock('subject', [])->willReturn('template');;
53
-        $template->renderBlock('body', [])->willReturn('body');;
52
+        $template->renderBlock('subject', [])->willReturn('template'); ;
53
+        $template->renderBlock('body', [])->willReturn('body'); ;
54 54
 
55 55
         $dispatcher->dispatch(
56 56
             SyliusMailerEvents::EMAIL_PRE_RENDER,
Please login to merge, or discard this patch.
src/Sylius/Bundle/MailerBundle/test/app/AppKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 use PSS\SymfonyMockerContainer\DependencyInjection\MockerContainer;
15 15
 use Symfony\Component\Config\Loader\LoaderInterface;
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function registerContainerConfiguration(LoaderInterface $loader): void
41 41
     {
42
-        $loader->load(__DIR__.'/config/config.yml');
42
+        $loader->load(__DIR__ . '/config/config.yml');
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.
Sylius/Bundle/MailerBundle/DependencyInjection/SyliusMailerExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\MailerBundle\DependencyInjection;
15 15
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function load(array $config, ContainerBuilder $container): void
31 31
     {
32 32
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
33
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
33
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
34 34
 
35 35
         $configFiles = [
36 36
             'services.xml',
Please login to merge, or discard this patch.