Passed
Branch master (7b370f)
by Thierry
04:46
created
src/DependencyInjection/Configuration.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
                     ->end()
45 45
                 ->end()
46 46
                 ->arrayNode('verifying_public_keys')
47
-                   ->arrayPrototype()
47
+                    ->arrayPrototype()
48 48
                         ->children()
49 49
                             ->scalarNode('name')->end()
50 50
                             ->scalarNode('key')->end()
Please login to merge, or discard this patch.
src/GuzzleHttp/Middleware/VerifyResponseMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
 
31 31
     public function __invoke(callable $handler): callable
32 32
     {
33
-        return function (RequestInterface $request, array $options) use ($handler) {
33
+        return function(RequestInterface $request, array $options) use ($handler) {
34 34
             return $handler($request, $options)->then(
35
-                function (ResponseInterface $response) {
35
+                function(ResponseInterface $response) {
36 36
                     $publicKey = $this->publicKeyGetter->getVerifyingKey($response);
37 37
                     $this->sapient->verifySignedResponse(
38 38
                         $response,
Please login to merge, or discard this patch.
src/GuzzleHttp/Middleware/UnsealResponseMiddleware.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
 
23 23
     public function __invoke(callable $handler)
24 24
     {
25
-        return function (RequestInterface $request, array $options) use ($handler) {
25
+        return function(RequestInterface $request, array $options) use ($handler) {
26 26
             return $handler($request, $options)->then(
27
-                function (ResponseInterface $response) {
27
+                function(ResponseInterface $response) {
28 28
                     $responseUnsealed = $this->sapient->unsealResponse(
29 29
                         $response,
30 30
                         new SealingSecretKey(Base64UrlSafe::decode($this->privateKey))
Please login to merge, or discard this patch.