Completed
Push — master ( dbc3bd...6bde35 )
by Mahmoud
03:28
created
app/Containers/Email/Services/GenerateEmailConfirmationUrlService.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/Services/SendConfirmationEmailService.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/Payments/Services/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/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/Port/Tests/PHPUnit/Traits/TestingTrait.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,10 +28,10 @@  discard block
 block discarded – undo
28 28
     public $loggedInTestingUser;
29 29
 
30 30
     /**
31
-     * @param           $endpoint
31
+     * @param           string $endpoint
32 32
      * @param string    $verb
33 33
      * @param array     $data
34
-     * @param bool|true $protected
34
+     * @param boolean $protected
35 35
      * @param array     $header
36 36
      *
37 37
      * @throws \Symfony\Component\Debug\Exception\UndefinedMethodException
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
     /**
117 117
      * @param null $userDetails
118 118
      *
119
-     * @return mixed
119
+     * @return App\Containers\User\Models\User
120 120
      */
121 121
     public function registerAndLoginTestingUser($userDetails = null)
122 122
     {
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     }
144 144
 
145 145
     /**
146
-     * @param $keys
146
+     * @param string[] $keys
147 147
      * @param $response
148 148
      */
149 149
     public function assertResponseContainKeys($keys, $response)
Please login to merge, or discard this patch.
app/Containers/User/Actions/RegisterVisitorUserAction.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/Email/UI/API/Controllers/Controller.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 {
18 18
 
19 19
     /**
20
-     * @param \App\Containers\Email\UI\API\Requests\SetEmailRequest $setEmailRequest
20
+     * @param SetUserEmailRequest $setEmailRequest
21 21
      * @param \App\Containers\Email\Actions\SetUserEmailAction   $setUserEmailAction
22 22
      *
23 23
      * @return  \Dingo\Api\Http\Response
@@ -32,8 +32,7 @@  discard block
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-     * @param \App\Containers\Email\UI\API\Requests\SetEmailRequest $setEmailRequest
36
-     * @param \App\Containers\Email\Actions\SetUserEmailAction   $setUserEmailAction
35
+     * @param SetVisitorEmailRequest $setEmailRequest
37 36
      *
38 37
      * @return  \Dingo\Api\Http\Response
39 38
      */
Please login to merge, or discard this patch.