@@ -27,7 +27,7 @@ |
||
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 | { |
@@ -16,7 +16,7 @@ |
||
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 | { |
@@ -23,7 +23,7 @@ |
||
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 |
@@ -24,7 +24,6 @@ discard block |
||
24 | 24 | * CreateUserAction constructor. |
25 | 25 | * |
26 | 26 | * @param \App\Containers\User\Contracts\UserRepositoryInterface $userRepository |
27 | - * @param \App\Containers\ApiAuthentication\Services\ApiAuthenticationService $authenticationService |
|
28 | 27 | */ |
29 | 28 | public function __construct( |
30 | 29 | UserRepositoryInterface $userRepository |
@@ -39,7 +38,6 @@ discard block |
||
39 | 38 | * @param $email |
40 | 39 | * @param $password |
41 | 40 | * @param $name |
42 | - * @param bool $login determine weather to login or not after creating |
|
43 | 41 | * |
44 | 42 | * @return mixed |
45 | 43 | */ |
@@ -37,7 +37,6 @@ |
||
37 | 37 | /** |
38 | 38 | * MailsAbstract constructor. |
39 | 39 | * |
40 | - * @param \Illuminate\Mail\Mailer $mail |
|
41 | 40 | */ |
42 | 41 | public function __construct() |
43 | 42 | { |
@@ -40,7 +40,7 @@ |
||
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 |
@@ -47,6 +47,7 @@ |
||
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 | { |
@@ -28,10 +28,10 @@ discard block |
||
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 |
||
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 |
||
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) |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * @param \App\Containers\User\Actions\FindUserByIdAction $findUserByIdAction |
22 | 22 | * @param \App\Containers\Email\Actions\ValidateConfirmationCodeAction $validateConfirmationCodeAction |
23 | 23 | * |
24 | - * @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector |
|
24 | + * @return \Illuminate\Http\RedirectResponse |
|
25 | 25 | */ |
26 | 26 | public function confirmUserEmail( |
27 | 27 | ConfirmUserEmailRequest $confirmUserEmailRequest, |