@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | |
| 3 | 3 | namespace ApiClients\Foundation\Oauth1\Middleware; |
| 4 | 4 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | return resolve($request); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - return futurePromise($this->loop, [$request, $options])->then(function ($args) { |
|
| 47 | + return futurePromise($this->loop, [$request, $options])->then(function($args) { |
|
| 48 | 48 | return resolve($this->signRequest(...$args)); |
| 49 | 49 | }); |
| 50 | 50 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | $options[self::class][Options::CONSUMER], |
| 89 | 89 | $options[self::class][Options::TOKEN], |
| 90 | 90 | $request->getMethod(), |
| 91 | - (string)$request->getUri(), |
|
| 91 | + (string) $request->getUri(), |
|
| 92 | 92 | $this->extractParamsFromQuery( |
| 93 | 93 | $request->getUri()->getQuery() |
| 94 | 94 | ) |
@@ -1,4 +1,4 @@ |
||
| 1 | -<?php declare(strict_types=1); |
|
| 1 | +<?php declare(strict_types = 1); |
|
| 2 | 2 | |
| 3 | 3 | namespace ApiClients\Foundation\Oauth1; |
| 4 | 4 | |