@@ -6,7 +6,7 @@ |
||
6 | 6 | 'cacheDir' => __DIR__, |
7 | 7 | 'cacheFileMode' => 0770 & ~umask(), |
8 | 8 | 'features' => 0, |
9 | - 'includePaths' => [], |
|
10 | - 'excludePaths' => [], |
|
9 | + 'includePaths' => [ ], |
|
10 | + 'excludePaths' => [ ], |
|
11 | 11 | 'containerClass' => \Go\Core\GoAspectContainer::class, |
12 | 12 | ]; |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $eventManager = $this->prophesize(EventManagerInterface::class); |
42 | 42 | $eventManager->attach( |
43 | 43 | Argument::exact(ModuleEvent::EVENT_LOAD_MODULES_POST), |
44 | - Argument::exact([$module, 'initializeAspects']) |
|
44 | + Argument::exact([ $module, 'initializeAspects' ]) |
|
45 | 45 | )->shouldBeCalled(); |
46 | 46 | |
47 | 47 | $moduleManager = $this->prophesize(ModuleManagerInterface::class); |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | ->willReturn($aspectContainer->reveal()) |
67 | 67 | ->shouldBeCalled(); |
68 | 68 | $serviceManager->get('config') |
69 | - ->willReturn(['goaop_aspect' => ['testAspect']]) |
|
69 | + ->willReturn([ 'goaop_aspect' => [ 'testAspect' ] ]) |
|
70 | 70 | ->shouldBeCalled(); |
71 | 71 | $serviceManager->get('testAspect') |
72 | 72 | ->willReturn($aspect) |
@@ -19,7 +19,7 @@ discard block |
||
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 |
||
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(); |