Completed
Pull Request — master (#8)
by Martin
01:30
created
tests/Unit/Factory/AspectKernelFactoryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     {
20 20
         $serviceLocator = $this->prophesize(ServiceLocatorInterface::class);
21 21
         $serviceLocator->get('config')
22
-            ->willReturn(['goaop_module' => require __DIR__ . '/../../resources/goaop_module.php'])
22
+            ->willReturn([ 'goaop_module' => require __DIR__ . '/../../resources/goaop_module.php' ])
23 23
             ->shouldBeCalled();
24 24
 
25 25
         $factory = new AspectKernelFactory();
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     {
41 41
         $serviceLocator = $this->prophesize(ServiceLocatorInterface::class);
42 42
         $serviceLocator->get('config')
43
-            ->willReturn(['goaop_module' => require __DIR__ . '/../../resources/goaop_module.php'])
43
+            ->willReturn([ 'goaop_module' => require __DIR__ . '/../../resources/goaop_module.php' ])
44 44
             ->shouldBeCalled();
45 45
 
46 46
         $factory = new AspectKernelFactory();
Please login to merge, or discard this patch.