Completed
Push — master ( a8f538...8e198c )
by Mahmoud
07:38
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/Port/Config/Loaders/ConfigsLoaderTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         }
41 41
     }
42 42
 
43
+    /**
44
+     * @param string $directory
45
+     */
43 46
     private function loadConfigs($directory)
44 47
     {
45 48
         if (File::isDirectory($directory)) {
Please login to merge, or discard this patch.
app/Port/Routes/Loaders/RoutesLoaderTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
     /**
114 114
      * @param \Symfony\Component\Finder\SplFileInfo $file
115 115
      *
116
-     * @return  mixed
116
+     * @return  string
117 117
      */
118 118
     private function getRouteFileNameWithoutExtension(SplFileInfo $file)
119 119
     {
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/Port/View/Loaders/ViewsLoaderTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
 
45 45
     }
46 46
 
47
+    /**
48
+     * @param string $directory
49
+     */
47 50
     private function loadViews($directory)
48 51
     {
49 52
         View::addLocation($directory);
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.