Completed
Push — develop ( de0fb5...78995e )
by Risan Bagja
01:33
created
src/Config/UriConfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Request/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.
src/OAuth1.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,6 @@
 block discarded – undo
34 34
      * Create a new OAuth1 instance.
35 35
      *
36 36
      * @param \Risan\OAuth1\HttpClientInterface $httpClient
37
-     * @param \Risan\OAuth1\Request\RequestFactoryInterface $request
38 37
      * @param \Risan\OAuth1\Credentials\CredentialsFactoryInterface $credentialsFactory
39 38
      */
40 39
     public function __construct(HttpClientInterface $httpClient, RequestFactoryInterface $requestFactory, CredentialsFactoryInterface $credentialsFactory)
Please login to merge, or discard this patch.
src/Request/RequestFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
      * Create a new instance of Request class.
99 99
      *
100 100
      * @param  string $method
101
-     * @param  strin $uri
101
+     * @param  \Psr\Http\Message\UriInterface $uri
102 102
      * @param  array  $options [description]
103 103
      * @return \Risan\OAuth1\Request\RequestInterface
104 104
      */
Please login to merge, or discard this patch.