Test Failed
Pull Request — master (#927)
by Maxim
05:28
created
src/AuthHttp/tests/Middleware/Firewall/RedirectFirewallTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
         $this->assertSame(302, $response->getStatusCode());
59 59
         $this->assertSame(['Location' => ['/login']], $response->getHeaders());
60
-        $this->assertSame('', (string) $response->getBody());
60
+        $this->assertSame('', (string)$response->getBody());
61 61
     }
62 62
 
63 63
     #[DataProvider('failTokensDataProvider')]
@@ -80,6 +80,6 @@  discard block
 block discarded – undo
80 80
 
81 81
         $this->assertSame(301, $response->getStatusCode());
82 82
         $this->assertSame(['Location' => ['/login']], $response->getHeaders());
83
-        $this->assertSame('', (string) $response->getBody());
83
+        $this->assertSame('', (string)$response->getBody());
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
src/Events/tests/Processor/ConfigProcessorTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     #[DataProvider('listenersDataProvider')]
22 22
     public function testProcess(array $listener, array $args): void
23 23
     {
24
-        $registry = new class() implements ListenerRegistryInterface {
24
+        $registry = new class() implements ListenerRegistryInterface{
25 25
 
26 26
             public string $event;
27 27
             public \Closure $listener;
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,8 @@
 block discarded – undo
21 21
     #[DataProvider('listenersDataProvider')]
22 22
     public function testProcess(array $listener, array $args): void
23 23
     {
24
-        $registry = new class() implements ListenerRegistryInterface {
24
+        $registry = new class() implements ListenerRegistryInterface
25
+        {
25 26
 
26 27
             public string $event;
27 28
             public \Closure $listener;
Please login to merge, or discard this patch.