33
Showing
1 changed file
with
1 additions
and
2 deletions
| ... | @@ -14,7 +14,6 @@ Use PDF; | ... | @@ -14,7 +14,6 @@ Use PDF; |
| 14 | use Illuminate\Support\Facades\Input; | 14 | use Illuminate\Support\Facades\Input; |
| 15 | use Intervention\Image\Facades\Image; | 15 | use Intervention\Image\Facades\Image; |
| 16 | use Illuminate\Support\Facades\Facade; | 16 | use Illuminate\Support\Facades\Facade; |
| 17 | use Illuminate\Support\Facades\Request as RequestGet; | ||
| 18 | use League\Flysystem\Filesystem; | 17 | use League\Flysystem\Filesystem; |
| 19 | use Curl\Curl; | 18 | use Curl\Curl; |
| 20 | use Google_Client; | 19 | use Google_Client; |
| ... | @@ -285,7 +284,7 @@ public function isGoogleFolderCreated($cust_id) | ... | @@ -285,7 +284,7 @@ public function isGoogleFolderCreated($cust_id) |
| 285 | 284 | ||
| 286 | $client->setApprovalPrompt('force'); | 285 | $client->setApprovalPrompt('force'); |
| 287 | 286 | ||
| 288 | $code = RequestGet::get('code'); | 287 | $code = Input::get('code'); |
| 289 | $client->authenticate($code); | 288 | $client->authenticate($code); |
| 290 | $_SESSION['token'] = $client->getAccessToken(); | 289 | $_SESSION['token'] = $client->getAccessToken(); |
| 291 | 290 | ... | ... |
-
Please register or sign in to post a comment