Completed
Push — master ( 452a8b...e0cade )
by Risan Bagja
04:01 queued 02:29
created
src/OAuth1.php 2 patches
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.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace Risan\OAuth1;
4 4
 
5 5
 use InvalidArgumentException;
6
-use Risan\OAuth1\Request\RequestFactoryInterface;
7
-use Risan\OAuth1\Credentials\TemporaryCredentials;
8 6
 use Risan\OAuth1\Credentials\CredentialsFactoryInterface;
7
+use Risan\OAuth1\Credentials\TemporaryCredentials;
8
+use Risan\OAuth1\Request\RequestFactoryInterface;
9 9
 
10 10
 class OAuth1 implements OAuth1Interface
11 11
 {
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.