@@ -141,7 +141,7 @@ |
||
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 | { |
@@ -282,7 +282,7 @@ |
||
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 | /** |
@@ -92,6 +92,7 @@ |
||
92 | 92 | |
93 | 93 | /** |
94 | 94 | * {@inheritdoc} |
95 | + * @param \Psr\Http\Message\StreamInterface $body |
|
95 | 96 | */ |
96 | 97 | protected function parseAccessToken($body) |
97 | 98 | { |
@@ -57,6 +57,7 @@ discard block |
||
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 |
||
145 | 146 | |
146 | 147 | /** |
147 | 148 | * {@inheritdoc}. |
149 | + * @param string $body |
|
148 | 150 | */ |
149 | 151 | protected function parseAccessToken($body) |
150 | 152 | { |