@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | ]; |
| 106 | 106 | |
| 107 | 107 | foreach ($requiredParams as $param) { |
| 108 | - if (! isset($uris[$param])) { |
|
| 108 | + if (!isset($uris[$param])) { |
|
| 109 | 109 | throw new InvalidArgumentException("Missing URI configuration: {$param}."); |
| 110 | 110 | } |
| 111 | 111 | } |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function setBase(UriInterface $uri) |
| 124 | 124 | { |
| 125 | - if (! $this->parser->isAbsolute($uri)) { |
|
| 125 | + if (!$this->parser->isAbsolute($uri)) { |
|
| 126 | 126 | throw new InvalidArgumentException('The base URI must be absolute.'); |
| 127 | 127 | } |
| 128 | 128 | |
@@ -212,6 +212,6 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | public function shouldBeResolvedToAbsoluteUri(UriInterface $uri) |
| 214 | 214 | { |
| 215 | - return ! $this->parser->isAbsolute($uri) && $this->hasBase(); |
|
| 215 | + return !$this->parser->isAbsolute($uri) && $this->hasBase(); |
|
| 216 | 216 | } |
| 217 | 217 | } |
@@ -56,10 +56,10 @@ |
||
| 56 | 56 | public function getTokenCredentialsUri(); |
| 57 | 57 | |
| 58 | 58 | /** |
| 59 | - * Get the callback URI. |
|
| 60 | - * |
|
| 61 | - * @return \Psr\Http\Message\UriInterface|null |
|
| 62 | - */ |
|
| 59 | + * Get the callback URI. |
|
| 60 | + * |
|
| 61 | + * @return \Psr\Http\Message\UriInterface|null |
|
| 62 | + */ |
|
| 63 | 63 | public function getCallbackUri(); |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -19,8 +19,8 @@ |
||
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | - * {@inheritDoc} |
|
| 23 | - */ |
|
| 22 | + * {@inheritDoc} |
|
| 23 | + */ |
|
| 24 | 24 | public function getUriParser() |
| 25 | 25 | { |
| 26 | 26 | return $this->uriParser; |