@@ -198,7 +198,7 @@ |
||
198 | 198 | /** |
199 | 199 | * Parse and build the given URI. |
200 | 200 | * |
201 | - * @param \Psr\Http\Message\UriInterface|string $uri |
|
201 | + * @param UriInterface|null $uri |
|
202 | 202 | * @return \Psr\Http\Message\UriInterface |
203 | 203 | */ |
204 | 204 | public function build($uri) |
@@ -26,7 +26,6 @@ |
||
26 | 26 | * Resolve the URI against the base URI. |
27 | 27 | * |
28 | 28 | * @param \Psr\Http\Message\UriInterface $baseUri |
29 | - * @param \Psr\Http\Message\UriInterface $relativeUri |
|
30 | 29 | * @return \Psr\Http\Message\UriInterface |
31 | 30 | */ |
32 | 31 | public function resolve(UriInterface $baseUri, UriInterface $uri); |
@@ -34,7 +34,7 @@ |
||
34 | 34 | /** |
35 | 35 | * Create ProtocolParameter instance. |
36 | 36 | * |
37 | - * @param \Risan\OAuth1\ConfigInterface $config |
|
37 | + * @param ConfigInterface $config |
|
38 | 38 | * @param \Risan\OAuth1\Signature\SignerInterface $signer |
39 | 39 | * @param \Risan\OAuth1\Request\NonceGeneratorInterface $nonceGenerator |
40 | 40 | */ |
@@ -4,9 +4,9 @@ |
||
4 | 4 | |
5 | 5 | use DateTime; |
6 | 6 | use Risan\OAuth1\Config\ConfigInterface; |
7 | -use Risan\OAuth1\Signature\SignerInterface; |
|
8 | -use Risan\OAuth1\Credentials\TemporaryCredentials; |
|
9 | 7 | use Risan\OAuth1\Credentials\ServerIssuedCredentials; |
8 | +use Risan\OAuth1\Credentials\TemporaryCredentials; |
|
9 | +use Risan\OAuth1\Signature\SignerInterface; |
|
10 | 10 | |
11 | 11 | class ProtocolParameter implements ProtocolParameterInterface |
12 | 12 | { |