Completed
Push — master ( 94ac50...f1dd30 )
by Mahmoud
06:45
created
app/Containers/Email/Tasks/SendConfirmationEmailTask.php 1 patch
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 \App\Containers\User\Models\User $user
19
-     * @param                                  $confirmationUrl
19
+     * @param                                  string $confirmationUrl
20 20
      */
21 21
     public function run(User $user, $confirmationUrl)
22 22
     {
Please login to merge, or discard this patch.
app/Containers/User/Actions/CreateVisitorUserAction.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,9 +38,8 @@
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * @param            $agentId
41
-     * @param null       $platform
42
-     * @param null       $device
43
-     * @param bool|false $login
41
+     * @param string       $platform
42
+     * @param string       $device
44 43
      *
45 44
      * @return  mixed
46 45
      */
Please login to merge, or discard this patch.
app/Containers/User/Actions/CreateUserAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * CreateUserAction constructor.
29 29
      *
30 30
      * @param \App\Containers\User\Tasks\CreateUserByCredentialsTask $createUserByCredentialsTask
31
-     * @param \App\Containers\User\Actions\FireUserCreatedEventTask  $fireUserCreatedEventTask
31
+     * @param FireUserCreatedEventTask  $fireUserCreatedEventTask
32 32
      */
33 33
     public function __construct(
34 34
         CreateUserByCredentialsTask $createUserByCredentialsTask,
Please login to merge, or discard this patch.
app/Containers/Authentication/Tasks/GetAuthenticatedUserTask.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * GetAuthenticatedUserTask constructor.
23 23
      *
24
-     * @param \App\Containers\User\Tasks\Auth $auth
24
+     * @param Auth $auth
25 25
      */
26 26
     public function __construct(Auth $auth)
27 27
     {
Please login to merge, or discard this patch.
app/Containers/Payment/Factories/PaymentsFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param \App\Containers\User\Models\User $user
26
-     * @param                                  $amount
26
+     * @param                                  integer $amount
27 27
      * @param string                           $currency
28 28
      *
29 29
      * @return  mixed
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use App\Containers\Payment\Contracts\Chargeable;
6 6
 use App\Containers\Payment\Exceptions\ObjectNonChargeableException;
7 7
 use App\Containers\Payment\Exceptions\PaymentMethodNotFoundException;
8
-use App\Containers\Payment\Exceptions\UserNotSetInThePaymentTaskException;
9 8
 use App\Containers\Paypal\Tasks\ChargeWithPaypalTask;
10 9
 use App\Containers\Stripe\Tasks\ChargeWithStripeTask;
11 10
 use App\Containers\User\Models\User;
Please login to merge, or discard this patch.
app/Containers/Paypal/Tasks/CreatePaypalAccountObjectTask.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use App\Containers\Stripe\Repositories\Eloquent\StripeAccountRepository;
7 7
 use App\Containers\User\Models\User;
8 8
 use App\Port\Action\Abstracts\Action;
9
-use Auth;
10 9
 
11 10
 /**
12 11
  * Class CreateStripeAccountAction.
Please login to merge, or discard this patch.
app/Containers/Paypal/UI/API/Tests/Functional/CreatePaypalAccountTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         $user = $this->registerAndLoginTestingUser($userDetails);
26 26
 
27 27
         $data = [
28
-           // TODO: To Be Continue...
28
+            // TODO: To Be Continue...
29 29
         ];
30 30
 
31 31
         // send the HTTP request
Please login to merge, or discard this patch.
app/Containers/Stripe/Tasks/CreateStripeAccountObjectTask.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use App\Containers\Stripe\Repositories\Eloquent\StripeAccountRepository;
7 7
 use App\Containers\User\Models\User;
8 8
 use App\Port\Action\Abstracts\Action;
9
-use Auth;
10 9
 
11 10
 /**
12 11
  * Class CreateStripeAccountAction.
Please login to merge, or discard this patch.
app/Containers/Tracker/Tasks/UpdateTimeTrackerToCloseTask.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * @param \App\Containers\Tracker\Models\TimeTracker $timeTracker
52 52
      *
53
-     * @return  \App\Containers\Tracker\Models\TimeTracker|mixed
53
+     * @return  boolean
54 54
      */
55 55
     public function run(TimeTracker $timeTracker)
56 56
     {
Please login to merge, or discard this patch.