Completed
Push — master ( 7928ab...1cefdb )
by Georgio
04:03 queued 11s
created
src/OAuth/OAuth1/Service/Etsy.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 {
16 16
     protected $scopes = [];
17 17
 
18
+    /**
19
+     * @param \PHPUnit\Framework\MockObject\MockObject $baseApiUri
20
+     */
18 21
     public function __construct(
19 22
         CredentialsInterface $credentials,
20 23
         ClientInterface $httpClient,
Please login to merge, or discard this patch.
src/OAuth/OAuth1/Service/Flickr.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 {
16 16
     protected $format;
17 17
 
18
+    /**
19
+     * @param \PHPUnit\Framework\MockObject\MockObject $baseApiUri
20
+     */
18 21
     public function __construct(
19 22
         CredentialsInterface $credentials,
20 23
         ClientInterface $httpClient,
Please login to merge, or discard this patch.
src/OAuth/OAuth1/Service/Yahoo.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 
15 15
 class Yahoo extends AbstractService
16 16
 {
17
+    /**
18
+     * @param \PHPUnit\Framework\MockObject\MockObject $baseApiUri
19
+     */
17 20
     public function __construct(
18 21
         CredentialsInterface $credentials,
19 22
         ClientInterface $httpClient,
Please login to merge, or discard this patch.
src/OAuth/OAuth2/Service/Buffer.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@  discard block
 block discarded – undo
19 19
  */
20 20
 class Buffer extends AbstractService
21 21
 {
22
+    /**
23
+     * @param \PHPUnit\Framework\MockObject\MockObject $baseApiUri
24
+     */
22 25
     public function __construct(
23 26
         CredentialsInterface $credentials,
24 27
         ClientInterface $httpClient,
@@ -98,6 +101,9 @@  discard block
 block discarded – undo
98 101
         return $code;
99 102
     }
100 103
 
104
+    /**
105
+     * @param string $responseBody
106
+     */
101 107
     protected function parseRequestTokenResponse($responseBody)
102 108
     {
103 109
         parse_str($responseBody, $data);
Please login to merge, or discard this patch.
tests/Unit/OAuth1/Service/QuickBooksTest.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -153,6 +153,10 @@  discard block
 block discarded – undo
153 153
         );
154 154
     }
155 155
 
156
+    /**
157
+     * @param \PHPUnit\Framework\MockObject\MockObject $client
158
+     * @param \PHPUnit\Framework\MockObject\MockObject $storage
159
+     */
156 160
     protected function getQuickBooks(
157 161
         ?ClientInterface $client = null,
158 162
         ?TokenStorageInterface $storage = null
@@ -177,6 +181,9 @@  discard block
 block discarded – undo
177 181
         );
178 182
     }
179 183
 
184
+    /**
185
+     * @param string $response
186
+     */
180 187
     protected function getQuickBooksForRequestingAccessToken(
181 188
         TokenInterface $token,
182 189
         $response
Please login to merge, or discard this patch.