Completed
Push — master ( 4deeba...aa28e7 )
by Carlos
04:26
created
src/Providers/AbstractProvider.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
     /**
142 142
      * Redirect the user of the application to the provider's authentication screen.
143 143
      *
144
-     * @return \Illuminate\Http\RedirectResponse
144
+     * @return RedirectResponse
145 145
      */
146 146
     public function redirect()
147 147
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@
 block discarded – undo
282 282
      */
283 283
     protected function parseAccessToken($body)
284 284
     {
285
-        return new AccessToken((array) json_decode($body, true));
285
+        return new AccessToken((array)json_decode($body, true));
286 286
     }
287 287
 
288 288
     /**
Please login to merge, or discard this patch.
src/Providers/FacebookProvider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -92,6 +92,7 @@
 block discarded – undo
92 92
 
93 93
     /**
94 94
      * {@inheritdoc}
95
+     * @param \Psr\Http\Message\StreamInterface $body
95 96
      */
96 97
     protected function parseAccessToken($body)
97 98
     {
Please login to merge, or discard this patch.
src/Providers/WeChatProvider.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -57,6 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     /**
59 59
      * {@inheritdoc}.
60
+     * @param string $state
60 61
      */
61 62
     protected function buildAuthUrlFromBase($url, $state)
62 63
     {
@@ -145,6 +146,7 @@  discard block
 block discarded – undo
145 146
 
146 147
     /**
147 148
      * {@inheritdoc}.
149
+     * @param string $body
148 150
      */
149 151
     protected function parseAccessToken($body)
150 152
     {
Please login to merge, or discard this patch.