Completed
Push — master ( cf2713...aee5ae )
by Sherif
02:07
created
src/Modules/Core/BaseClasses/BaseService.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @param  array   $relations
42 42
      * @param  string  $sortBy
43
-     * @param  boolean $desc
43
+     * @param  integer $desc
44 44
      * @param  array   $columns
45 45
      * @return collection
46 46
      */
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * @param  integer $perPage
61 61
      * @param  array   $relations
62 62
      * @param  string  $sortBy
63
-     * @param  boolean $desc
63
+     * @param  integer $desc
64 64
      * @param  array   $columns
65 65
      * @return collection
66 66
      */
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * @param  integer $perPage
80 80
      * @param  array   $relations
81 81
      * @param  string  $sortBy
82
-     * @param  boolean $desc
82
+     * @param  integer $desc
83 83
      * @param  array   $columns
84 84
      * @return collection
85 85
      */
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * @param  integer $perPage
101 101
      * @param  array   $relations
102 102
      * @param  string  $sortBy
103
-     * @param  boolean $desc
103
+     * @param  integer $desc
104 104
      * @param  array   $columns
105 105
      * @return collection
106 106
      */
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      * @param  array   $conditions array of conditions
180 180
      * @param  array   $relations
181 181
      * @param  string  $sortBy
182
-     * @param  boolean $desc
182
+     * @param  integer $desc
183 183
      * @param  array   $columns
184 184
      * @return collection
185 185
      */
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
      * @param  array   $conditions array of conditions
215 215
      * @param  integer $perPage
216 216
      * @param  string  $sortBy
217
-     * @param  boolean $desc
217
+     * @param  integer $desc
218 218
      * @param  array   $columns
219 219
      * @return collection
220 220
      */
Please login to merge, or discard this patch.
src/Modules/Roles/Services/RoleService.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
      * @param  integer $roleId
23 23
      * @param  array   $permissionIds
24
-     * @return object
24
+     * @return boolean
25 25
      */
26 26
     public function assignPermissions($roleId, $permissionIds)
27 27
     {
Please login to merge, or discard this patch.
src/Modules/Users/Services/UserService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
      *
133 133
      * @param  integer $userId
134 134
      * @param  array   $roleIds
135
-     * @return object
135
+     * @return boolean
136 136
      */
137 137
     public function assignRoles($userId, $roleIds)
138 138
     {
Please login to merge, or discard this patch.