Completed
Push — master ( 779531...4b31ef )
by Mahmoud
04:27
created
app/Containers/User/Data/Factories/UserFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // User
4
-$factory->define(App\Containers\User\Models\User::class, function (Faker\Generator $faker) {
4
+$factory->define(App\Containers\User\Models\User::class, function(Faker\Generator $faker) {
5 5
     return [
6 6
         'name'     => $faker->name,
7 7
         'email'    => $faker->email,
Please login to merge, or discard this patch.
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/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/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.
app/Containers/Email/UI/API/Controllers/Controller.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 {
18 18
 
19 19
     /**
20
-     * @param \App\Containers\Email\UI\API\Requests\SetEmailRequest $request
20
+     * @param SetUserEmailRequest $request
21 21
      * @param \App\Containers\Email\Actions\SetUserEmailWithConfirmationAction   $action
22 22
      *
23 23
      * @return  \Dingo\Api\Http\Response
Please login to merge, or discard this patch.