@@ -16,7 +16,7 @@ |
||
16 | 16 | { |
17 | 17 | $this->pluginManager = new ErrorResponseGeneratorManager(new ServiceManager(), [ |
18 | 18 | 'services' => [ |
19 | - 'foo' => function () { |
|
19 | + 'foo' => function() { |
|
20 | 20 | }, |
21 | 21 | ], |
22 | 22 | 'invokables' => [ |
@@ -26,17 +26,17 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function serviceIsCreated() |
28 | 28 | { |
29 | - $instance = $this->factory->__invoke(new ServiceManager(['services' => [ |
|
29 | + $instance = $this->factory->__invoke(new ServiceManager([ 'services' => [ |
|
30 | 30 | ErrorResponseGeneratorManager::class => $this->prophesize(ErrorResponseGeneratorManager::class)->reveal(), |
31 | 31 | LogMessageBuilderInterface::class => $this->prophesize(LogMessageBuilderInterface::class)->reveal(), |
32 | - ]])); |
|
32 | + ] ])); |
|
33 | 33 | $this->assertInstanceOf(ContentBasedErrorResponseGenerator::class, $instance); |
34 | 34 | |
35 | - $instance = $this->factory->__invoke(new ServiceManager(['services' => [ |
|
35 | + $instance = $this->factory->__invoke(new ServiceManager([ 'services' => [ |
|
36 | 36 | ErrorResponseGeneratorManager::class => $this->prophesize(ErrorResponseGeneratorManager::class)->reveal(), |
37 | 37 | LogMessageBuilderInterface::class => $this->prophesize(LogMessageBuilderInterface::class)->reveal(), |
38 | 38 | LoggerInterface::class => $this->prophesize(LoggerInterface::class)->reveal(), |
39 | - ]])); |
|
39 | + ] ])); |
|
40 | 40 | $this->assertInstanceOf(ContentBasedErrorResponseGenerator::class, $instance); |
41 | 41 | } |
42 | 42 | |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | public function defaultContentTypeIsSetWhenDefined() |
47 | 47 | { |
48 | 48 | /** @var ContentBasedErrorResponseGenerator $instance */ |
49 | - $instance = $this->factory->__invoke(new ServiceManager(['services' => [ |
|
49 | + $instance = $this->factory->__invoke(new ServiceManager([ 'services' => [ |
|
50 | 50 | ErrorResponseGeneratorManager::class => $this->prophesize(ErrorResponseGeneratorManager::class)->reveal(), |
51 | 51 | LogMessageBuilderInterface::class => $this->prophesize(LogMessageBuilderInterface::class)->reveal(), |
52 | 52 | 'config' => [ |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | 'default_content_type' => 'application/json', |
55 | 55 | ], |
56 | 56 | ], |
57 | - ]])); |
|
57 | + ] ])); |
|
58 | 58 | |
59 | 59 | $ref = new \ReflectionObject($instance); |
60 | 60 | $prop = $ref->getProperty('defaultContentType'); |
@@ -23,13 +23,13 @@ |
||
23 | 23 | */ |
24 | 24 | public function serviceIsCreated() |
25 | 25 | { |
26 | - $instance = $this->factory->__invoke(new ServiceManager(['services' => [ |
|
26 | + $instance = $this->factory->__invoke(new ServiceManager([ 'services' => [ |
|
27 | 27 | 'config' => [ |
28 | 28 | 'error_handler' => [ |
29 | - 'plugins' => [], |
|
29 | + 'plugins' => [ ], |
|
30 | 30 | ], |
31 | 31 | ], |
32 | - ]])); |
|
32 | + ] ])); |
|
33 | 33 | $this->assertInstanceOf(ErrorResponseGeneratorManager::class, $instance); |
34 | 34 | } |
35 | 35 | } |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | $this->errorHandler = new ContentBasedErrorResponseGenerator( |
23 | 23 | new ErrorResponseGeneratorManager(new ServiceManager(), [ |
24 | 24 | 'factories' => [ |
25 | - 'text/html' => [$this, 'factory'], |
|
26 | - 'application/json' => [$this, 'factory'], |
|
25 | + 'text/html' => [ $this, 'factory' ], |
|
26 | + 'application/json' => [ $this, 'factory' ], |
|
27 | 27 | ], |
28 | 28 | ]), |
29 | 29 | new NullLogger(), |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | public function factory($container, $name) |
35 | 35 | { |
36 | - return function () use ($name) { |
|
36 | + return function() use ($name) { |
|
37 | 37 | return (new Response())->withHeader('Content-type', $name); |
38 | 38 | }; |
39 | 39 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | public function ifNoErrorHandlerIsFoundAnExceptionIsThrown() |
76 | 76 | { |
77 | 77 | $this->errorHandler = new ContentBasedErrorResponseGenerator( |
78 | - new ErrorResponseGeneratorManager(new ServiceManager(), []), |
|
78 | + new ErrorResponseGeneratorManager(new ServiceManager(), [ ]), |
|
79 | 79 | new NullLogger(), |
80 | 80 | new BasicLogMessageBuilder() |
81 | 81 | ); |
@@ -91,8 +91,8 @@ discard block |
||
91 | 91 | $this->errorHandler = new ContentBasedErrorResponseGenerator( |
92 | 92 | new ErrorResponseGeneratorManager(new ServiceManager(), [ |
93 | 93 | 'factories' => [ |
94 | - 'text/html' => [$this, 'factory'], |
|
95 | - 'application/json' => [$this, 'factory'], |
|
94 | + 'text/html' => [ $this, 'factory' ], |
|
95 | + 'application/json' => [ $this, 'factory' ], |
|
96 | 96 | ], |
97 | 97 | ]), |
98 | 98 | new NullLogger(), |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function serviceIsCreated(array $config, bool $expectedIsDev) |
30 | 30 | { |
31 | - $instance = $this->factory->__invoke(new ServiceManager(['services' => [ |
|
31 | + $instance = $this->factory->__invoke(new ServiceManager([ 'services' => [ |
|
32 | 32 | 'config' => $config, |
33 | - ]])); |
|
33 | + ] ])); |
|
34 | 34 | |
35 | 35 | $ref = new \ReflectionObject($instance); |
36 | 36 | $isDev = $ref->getProperty('isDevelopmentMode'); |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | public function provideDebugs(): array |
44 | 44 | { |
45 | 45 | return [ |
46 | - [[], false], |
|
47 | - [['debug' => true], true], |
|
48 | - [['debug' => false], false], |
|
46 | + [ [ ], false ], |
|
47 | + [ [ 'debug' => true ], true ], |
|
48 | + [ [ 'debug' => false ], false ], |
|
49 | 49 | ]; |
50 | 50 | } |
51 | 51 | } |
@@ -36,6 +36,6 @@ |
||
36 | 36 | { |
37 | 37 | $err = new \Exception('A super critical error'); |
38 | 38 | $message = $this->messageBuilder->buildMessage(ServerRequestFactory::fromGlobals(), new Response(), $err); |
39 | - $this->assertEquals('Error occurred while dispatching request:' . PHP_EOL . $err, $message); |
|
39 | + $this->assertEquals('Error occurred while dispatching request:'.PHP_EOL.$err, $message); |
|
40 | 40 | } |
41 | 41 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | public function __invoke(ContainerInterface $container) |
25 | 25 | { |
26 | - $config = $container->has('config') ? $container->get('config') : []; |
|
27 | - return new ErrorResponseGenerator(isset($config['debug']) ? (bool) $config['debug'] : false); |
|
26 | + $config = $container->has('config') ? $container->get('config') : [ ]; |
|
27 | + return new ErrorResponseGenerator(isset($config[ 'debug' ]) ? (bool) $config[ 'debug' ] : false); |
|
28 | 28 | } |
29 | 29 | } |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function __invoke(ContainerInterface $container) |
29 | 29 | { |
30 | - $config = $container->has('config') ? $container->get('config') : []; |
|
31 | - $ehConfig = $config['error_handler'] ?? []; |
|
30 | + $config = $container->has('config') ? $container->get('config') : [ ]; |
|
31 | + $ehConfig = $config[ 'error_handler' ] ?? [ ]; |
|
32 | 32 | |
33 | 33 | $errorHandlerManager = $container->get(ErrorResponseGeneratorManager::class); |
34 | 34 | $logger = $container->has(LoggerInterface::class) ? $container->get(LoggerInterface::class) : new NullLogger(); |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | $errorHandlerManager, |
39 | 39 | $logger, |
40 | 40 | $logMessageBuilder, |
41 | - $ehConfig['default_content_type'] ?? 'text/html' |
|
41 | + $ehConfig[ 'default_content_type' ] ?? 'text/html' |
|
42 | 42 | ); |
43 | 43 | } |
44 | 44 | } |
@@ -23,8 +23,8 @@ |
||
23 | 23 | */ |
24 | 24 | public function __invoke(ContainerInterface $container) |
25 | 25 | { |
26 | - $config = $container->has('config') ? $container->get('config') : []; |
|
27 | - $plugins = $config['error_handler']['plugins'] ?? []; |
|
26 | + $config = $container->has('config') ? $container->get('config') : [ ]; |
|
27 | + $plugins = $config[ 'error_handler' ][ 'plugins' ] ?? [ ]; |
|
28 | 28 | return new ErrorResponseGeneratorManager($container, $plugins); |
29 | 29 | } |
30 | 30 | } |