Completed
Pull Request — master (#42)
by Chad
01:29
created
src/GuzzleAdapter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace TraderInteractive\Api;
4 4
 
5
-use ArrayObject;
6 5
 use DominionEnterprises\Util;
7 6
 use GuzzleHttp\Client as GuzzleClient;
8 7
 use GuzzleHttp\Exception\RequestException;
Please login to merge, or discard this patch.
src/Client.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      * @param Authentication $authentication
130 130
      * @param string $baseUrl
131 131
      * @param int $cacheMode
132
-     * @param Cache $cache
132
+     * @param CacheInterface $cache
133 133
      * @param string $accessToken
134 134
      * @param string $refreshToken
135 135
      *
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     /**
167 167
      * Get access token and refresh token
168 168
      *
169
-     * @return array two string values, access token and refresh token
169
+     * @return string[] two string values, access token and refresh token
170 170
      */
171 171
     public function getTokens()
172 172
     {
@@ -190,6 +190,7 @@  discard block
 block discarded – undo
190 190
 
191 191
     /**
192 192
      * @see startIndex()
193
+     * @param string $resource
193 194
      */
194 195
     public function index($resource, array $filters = [])
195 196
     {
Please login to merge, or discard this patch.