Completed
Push — master ( eaf6c0...15ca6f )
by Alejandro
10:47 queued 08:31
created
test/ErrorHandler/ErrorHandlerManagerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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' => [
Please login to merge, or discard this patch.
test/ErrorHandler/Factory/ContentBasedErrorHandlerFactoryTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,17 +26,17 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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');
Please login to merge, or discard this patch.
test/ErrorHandler/Factory/ErrorHandlerManagerFactoryTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
test/ErrorHandler/ContentBasedErrorHandlerTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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(),
Please login to merge, or discard this patch.
test/ErrorHandler/Factory/PlainTextResponseGeneratorFactoryTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
test/Log/BasicLogMessageBuilderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,6 +36,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/ErrorHandler/Factory/PlainTextResponseGeneratorFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/ErrorHandler/Factory/ContentBasedErrorResponseGeneratorFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/ErrorHandler/Factory/ErrorHandlerManagerFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.