Completed
Push — master ( ba659b...dd406c )
by Mahmoud
03:31
created
app/Port/Email/Abstracts/MailsAbstract.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,6 @@
 block discarded – undo
37 37
     /**
38 38
      * MailsAbstract constructor.
39 39
      *
40
-     * @param \Illuminate\Mail\Mailer $mail
41 40
      */
42 41
     public function __construct()
43 42
     {
Please login to merge, or discard this patch.
app/Port/Exception/Abstracts/Exception.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     /**
41 41
      * Exception constructor.
42 42
      *
43
-     * @param null            $message
43
+     * @param string            $message
44 44
      * @param null            $errors
45 45
      * @param null            $statusCode
46 46
      * @param int             $code
Please login to merge, or discard this patch.
app/Port/Provider/Traits/PortServiceProviderTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -47,6 +47,7 @@
 block discarded – undo
47 47
      * By default Laravel takes (server/database/factories) as the
48 48
      * path to the factories, this function changes the path to load
49 49
      * the factories from the infrastructure directory.
50
+     * @param string $customPath
50 51
      */
51 52
     public function changeTheDefaultDatabaseModelsFactoriesPath($customPath)
52 53
     {
Please login to merge, or discard this patch.
app/Containers/Email/Tasks/GenerateEmailConfirmationUrlTask.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * @param $email
28 28
      * @param $password
29 29
      *
30
-     * @return mixed
30
+     * @return string
31 31
      */
32 32
     public function run(User $user)
33 33
     {
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/Payment/Factories/PaymentsFactory.php 1 patch
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.
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.