Completed
Push — master ( f8b6bf...bec27e )
by Mahmoud
03:02
created
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/Containers/User/Data/Seeders/DefaultUsersSeeder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * DefaultUsersSeeder constructor.
20 20
      *
21
-     * @param \App\Containers\Authorization\Data\Seeders\GetRoleTask $getRoleTask
21
+     * @param GetRoleTask $getRoleTask
22 22
      */
23 23
     public function __construct(GetRoleTask $getRoleTask)
24 24
     {
Please login to merge, or discard this patch.
app/Containers/Socialauth/Tasks/UpdateUserSocialProfileTask.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,12 +33,12 @@
 block discarded – undo
33 33
     /**
34 34
      * @param      $userId
35 35
      * @param null $token
36
-     * @param null $expiresIn
37
-     * @param null $refreshToken
38
-     * @param null $tokenSecret
36
+     * @param boolean|null $expiresIn
37
+     * @param boolean|null $refreshToken
38
+     * @param boolean|null $tokenSecret
39 39
      * @param null $provider
40 40
      * @param null $avatar
41
-     * @param null $avatar_original
41
+     * @param boolean|null $avatar_original
42 42
      * @param null $socialId
43 43
      * @param null $nickname
44 44
      * @param null $name
Please login to merge, or discard this patch.
app/Containers/Authorization/Actions/AssignRoleAction.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
      * GetAdminRoleAction constructor.
23 23
      *
24
-     * @param \App\Containers\Authorization\Data\Repositories\AssignRoleTask $assignRoleTask
24
+     * @param AssignRoleTask $assignRoleTask
25 25
      */
26 26
     public function __construct(AssignRoleTask $assignRoleTask)
27 27
     {
Please login to merge, or discard this patch.
app/Containers/Country/Actions/ListAllCountriesAction.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
      * ListAllCountriesAction constructor.
23 23
      *
24
-     * @param \App\Containers\Country\Actions\ListAllCountriesTask $listAllCountriesTask
24
+     * @param ListAllCountriesTask $listAllCountriesTask
25 25
      */
26 26
     public function __construct(ListAllCountriesTask $listAllCountriesTask)
27 27
     {
Please login to merge, or discard this patch.
app/Containers/User/Actions/GetUserAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * FindUserByAnythingAction constructor.
25 25
      *
26 26
      * @param \App\Containers\User\Tasks\FindUserByIdTask         $findUserByIdTask
27
-     * @param \App\Containers\User\Tasks\GetAuthenticatedUserTask $getAuthenticatedUserTask
27
+     * @param GetAuthenticatedUserTask $getAuthenticatedUserTask
28 28
      */
29 29
     public function __construct(
30 30
         FindUserByIdTask $findUserByIdTask,
Please login to merge, or discard this patch.
app/Port/Test/PHPUnit/Traits/TestingTrait.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public $loggedInTestingUser;
38 38
 
39 39
     /**
40
-     * @param        $endpoint
40
+     * @param        string $endpoint
41 41
      * @param string $verb
42 42
      * @param array  $data
43 43
      * @param bool   $protected
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return  App\Containers\User\Models\User|mixed
136
+     * @return  User
137 137
      */
138 138
     public function getLoggedInTestingAdmin()
139 139
     {
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     /**
172 172
      * @param null $userDetails
173 173
      *
174
-     * @return  mixed
174
+     * @return  User
175 175
      */
176 176
     public function registerAndLoginTestingUser($userDetails = null)
177 177
     {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     /**
203 203
      * @param null $userDetails
204 204
      *
205
-     * @return  mixed
205
+     * @return  User
206 206
      */
207 207
     public function registerAndLoginTestingAdmin($userDetails = null)
208 208
     {
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
      *
219 219
      * @param null $userDetails
220 220
      *
221
-     * @return  mixed
221
+     * @return  User
222 222
      */
223 223
     public function registerAndLoginTestingDeveloper($userDetails = null)
224 224
     {
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
     }
234 234
 
235 235
     /**
236
-     * @param $keys
236
+     * @param string[] $keys
237 237
      * @param $response
238 238
      */
239 239
     public function assertResponseContainKeys($keys, $response)
Please login to merge, or discard this patch.
app/Port/Loader/Loaders/ConfigsLoaderTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @param $directory
41
+     * @param string $directory
42 42
      */
43 43
     private function loadConfigs($directory)
44 44
     {
Please login to merge, or discard this patch.
app/Port/Loader/Loaders/AliasesLoaderTrait.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 {
15 15
 
16 16
     /**
17
-     * @param array $aliases
18 17
      */
19 18
     public function loadPortInternalAliases()
20 19
     {
Please login to merge, or discard this patch.