Completed
Push — master ( 81ce2b...d46175 )
by Lucas
03:07
created
src/Client.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
      * Set the token passed as the default token. A default token can
143 143
      * also be set using the `token` key in the constructor options.
144 144
      *
145
-     * @param AccessToken $token The token to set
145
+     * @param AccessToken|null $token The token to set
146 146
      * @return AccessToken The {@link https://goo.gl/QEoCNV access token}
147 147
      */
148 148
     public function setToken(AccessToken $token)
Please login to merge, or discard this patch.
src/ClientBase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     /**
111 111
      * Requests an access token using a refresh token
112 112
      *
113
-     * @param AccessToken $token A previously generated token
113
+     * @param AccessToken|null $token A previously generated token
114 114
      * @return AccessToken The {@link https://goo.gl/QEoCNV access token}
115 115
      */
116 116
     public function refresh(AccessToken $token)
Please login to merge, or discard this patch.