Completed
Push — master ( 150fd1...9bb841 )
by Mahmoud
06:22
created
app/Containers/SocialAuth/Actions/SocialLoginAction.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@
 block discarded – undo
21 21
      * SocialLoginAction constructor.
22 22
      *
23 23
      * @param \App\Containers\SocialAuth\Tasks\GetUserSocialProfileTask     $getUserSocialProfileTask
24
-     * @param \App\Containers\User\Tasks\FindSocialUserTask                                 $findSocialUserTask
25
-     * @param \App\Containers\User\Tasks\CreateUserBySocialProfileTask                               $createUserBySocialProfileTask
24
+     * @param FindSocialUserTask                                 $findSocialUserTask
25
+     * @param CreateUserBySocialProfileTask                               $createUserBySocialProfileTask
26 26
      * @param \App\Containers\SocialAuth\Tasks\UpdateUserSocialProfileTask  $updateUserSocialProfileTask
27
-     * @param \App\Containers\SocialAuth\Actions\ApiLoginThisUserObjectTask $apiLoginThisUserObjectTask
27
+     * @param ApiLoginThisUserObjectTask $apiLoginThisUserObjectTask
28 28
      */
29 29
     public function __construct(
30 30
         GetUserSocialProfileTask $getUserSocialProfileTask,
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -78,10 +78,10 @@
 block discarded – undo
78 78
         // find if that user exist in our database
79 79
         $user = $this->findSocialUserTask->run($provider, $socialUserProfile->id);
80 80
 
81
-        $tokenSecret = isset($socialUserProfile->tokenSecret) ? : null;
82
-        $expiresIn = isset($socialUserProfile->expiresIn) ? : null;
83
-        $refreshToken = isset($socialUserProfile->refreshToken) ? : null;
84
-        $avatar_original = isset($socialUserProfile->avatar_original) ? : null;
81
+        $tokenSecret = isset($socialUserProfile->tokenSecret) ?: null;
82
+        $expiresIn = isset($socialUserProfile->expiresIn) ?: null;
83
+        $refreshToken = isset($socialUserProfile->refreshToken) ?: null;
84
+        $avatar_original = isset($socialUserProfile->avatar_original) ?: null;
85 85
 
86 86
         // if user not found then create new one
87 87
         if (!$user) {
Please login to merge, or discard this patch.
app/Containers/SocialAuth/Tasks/GetUserSocialProfileTask.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * @param      $provider
19
-     * @param null $request
19
+     * @param null $requestData
20 20
      *
21 21
      * @return  mixed
22 22
      */
Please login to merge, or discard this 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 App\Containers\SocialAuth\Tasks;
4 4
 
5
-use App\Containers\SocialAuth\Exceptions\MissingTokenException;
6 5
 use App\Containers\SocialAuth\Extra\SocialProvider;
7 6
 use Laravel\Socialite\Facades\Socialite;
8 7
 
Please login to merge, or discard this patch.
app/Containers/SocialAuth/UI/API/Controllers/Controller.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use App\Containers\SocialAuth\Actions\SocialLoginAction;
6 6
 use App\Containers\SocialAuth\UI\API\Requests\ApiAuthenticateRequest;
7
-use App\Containers\SocialAuth\UI\API\Requests\AuthenticateCallbackRequest;
8
-use App\Containers\SocialAuth\UI\API\Requests\AuthenticateOneRequest;
9 7
 use App\Containers\User\UI\API\Transformers\UserTransformer;
10 8
 use App\Port\Controller\Abstracts\PortApiController;
11 9
 
Please login to merge, or discard this patch.