Completed
Push — master ( 3a963d...37a365 )
by Beñat
02:48
created
TwigBridge/Infrastructure/Mailing/TwigUserMailableFactorySpec.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     function let()
31 31
     {
32 32
         $loader = new \Twig_Loader_Filesystem(
33
-            __DIR__ . '/../../../../../src/BenGorUser/TwigBridge/Infrastructure/Ui/Twig/views'
33
+            __DIR__.'/../../../../../src/BenGorUser/TwigBridge/Infrastructure/Ui/Twig/views'
34 34
         );
35 35
         $twig = new \Twig_Environment($loader);
36 36
         $twig->addExtension(new TranslationExtension(
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $to = new UserEmail('[email protected]');
56 56
 
57
-        $this->build($to, [])->shouldReturnAnInstanceOf(UserMailable::class);
57
+        $this->build($to, [ ])->shouldReturnAnInstanceOf(UserMailable::class);
58 58
     }
59 59
 
60 60
     function it_builds_with_multiples_receivers()
@@ -65,6 +65,6 @@  discard block
 block discarded – undo
65 65
             new UserEmail('[email protected]'),
66 66
         ];
67 67
 
68
-        $this->build($to, [])->shouldReturnAnInstanceOf(UserMailable::class);
68
+        $this->build($to, [ ])->shouldReturnAnInstanceOf(UserMailable::class);
69 69
     }
70 70
 }
Please login to merge, or discard this patch.