Completed
Push — master ( 075fc2...c6cae9 )
by Bukashk0zzz
03:00
created
Tests/Controller/HandshakeControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\DependencyInjection;
4 4
 
Please login to merge, or discard this patch.
Tests/Controller/DescriptorControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\DependencyInjection;
4 4
 
Please login to merge, or discard this patch.
Tests/Security/StubbedTenant.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\Security;
4 4
 
Please login to merge, or discard this patch.
Tests/Security/JWTUserProviderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Tests\Security;
4 4
 
Please login to merge, or discard this patch.
src/Service/GuzzleJWTMiddleware.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace AtlassianConnectBundle\Service;
4 4
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     public static function authTokenMiddleware(string $issuer, string $secret): callable
24 24
     {
25 25
         return Middleware::mapRequest(
26
-            static function (RequestInterface $request) use ($issuer, $secret) {
26
+            static function(RequestInterface $request) use ($issuer, $secret) {
27 27
                 return new Request(
28 28
                     $request->getMethod(),
29 29
                     $request->getUri(),
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     public static function authUserTokenMiddleware(string $oauthClientId, string $secret, string $baseUrl, string $username): callable
46 46
     {
47 47
         return Middleware::mapRequest(
48
-            static function (RequestInterface $request) use ($oauthClientId, $secret, $baseUrl, $username) {
48
+            static function(RequestInterface $request) use ($oauthClientId, $secret, $baseUrl, $username) {
49 49
                 return new Request(
50 50
                     $request->getMethod(),
51 51
                     $request->getUri(),
Please login to merge, or discard this patch.