Completed
Push — develop ( 0050db...7fb870 )
by Risan Bagja
01:33
created
src/Request/RequestConfig.php 1 patch
Unused Use Statements   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,11 +5,9 @@
 block discarded – undo
5 5
 use DateTime;
6 6
 use GuzzleHttp\Psr7\Uri;
7 7
 use Risan\OAuth1\ConfigInterface;
8
-use Risan\OAuth1\Signature\HmacSha1Signer;
9
-use Risan\OAuth1\Signature\SignerInterface;
10
-use Risan\OAuth1\Credentials\TemporaryCredentials;
11
-use Risan\OAuth1\Signature\KeyBasedSignerInterface;
12 8
 use Risan\OAuth1\Credentials\ServerIssuedCredentials;
9
+use Risan\OAuth1\Credentials\TemporaryCredentials;
10
+use Risan\OAuth1\Signature\SignerInterface;
13 11
 
14 12
 class RequestConfig implements RequestConfigInterface
15 13
 {
Please login to merge, or discard this patch.
src/Config/UriConfig.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
     /**
191 191
      * Parse and build the given URI.
192 192
      *
193
-     * @param  \Psr\Http\Message\UriInterface|string $uri
193
+     * @param  \Psr\Http\Message\UriInterface|null $uri
194 194
      * @return \Psr\Http\Message\UriInterface
195 195
      */
196 196
     public function build($uri)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Risan\OAuth1\Config;
4 4
 
5
-use GuzzleHttp\Psr7\Uri;
6 5
 use InvalidArgumentException;
7
-use GuzzleHttp\Psr7\UriResolver;
8 6
 
9 7
 class UriConfig implements UriConfigInterface
10 8
 {
Please login to merge, or discard this patch.
src/UriParserInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.