Completed
Push — master ( b7f417...e961f1 )
by Sherif
02:36
created
src/Modules/V1/Core/Console/Commands/GenerateDoc.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,6 +123,7 @@  discard block
 block discarded – undo
123 123
      * 
124 124
      * @param  array  &$route
125 125
      * @param  object $reflectionMethod]
126
+     * @param \ReflectionMethod $reflectionMethod
126 127
      * @return void
127 128
      */
128 129
     protected function processDocBlock(&$route, $reflectionMethod)
@@ -145,7 +146,7 @@  discard block
 block discarded – undo
145 146
      * Generate post body for the given route.
146 147
      * 
147 148
      * @param  array  &$route
148
-     * @param  object $reflectionMethod
149
+     * @param  \ReflectionMethod $reflectionMethod
149 150
      * @param  array  $validationRules
150 151
      * @return void
151 152
      */
Please login to merge, or discard this patch.
src/Modules/V1/Acl/Repositories/UserRepository.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
      * Reset the given user's password.
240 240
      *
241 241
      * @param  array  $credentials
242
-     * @return array
242
+     * @return string|null
243 243
      */
244 244
     public function resetPassword($credentials)
245 245
     {
@@ -322,7 +322,6 @@  discard block
 block discarded – undo
322 322
     /**
323 323
      * Save the given data to the logged in user.
324 324
      *
325
-     * @param  array $credentials
326 325
      * @return void
327 326
      */
328 327
     public function saveProfile($data) 
Please login to merge, or discard this patch.
src/Modules/V1/Core/AbstractRepositories/AbstractRepository.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @param  array   $relations
34 34
      * @param  string  $sortBy
35
-     * @param  boolean $desc
35
+     * @param  integer $desc
36 36
      * @param  array   $columns
37 37
      * @return collection
38 38
      */
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * @param  integer $perPage
51 51
      * @param  array   $relations
52 52
      * @param  string  $sortBy
53
-     * @param  boolean $desc
53
+     * @param  integer $desc
54 54
      * @param  array   $columns
55 55
      * @return collection
56 56
      */
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      * @param  integer $perPage
165 165
      * @param  array   $relations
166 166
      * @param  string  $sortBy
167
-     * @param  boolean $desc
167
+     * @param  integer $desc
168 168
      * @param  array   $columns
169 169
      * @return collection
170 170
      */
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      * @param  integer $perPage
183 183
      * @param  array   $relations
184 184
      * @param  string  $sortBy
185
-     * @param  boolean $desc
185
+     * @param  integer $desc
186 186
      * @param  array   $columns
187 187
      * @return collection
188 188
      */
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
      * Save the given model to the storage.
199 199
      * 
200 200
      * @param  array   $data
201
-     * @return object
201
+     * @return boolean
202 202
      */
203 203
     public function save(array $data)
204 204
     {
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
      * id.
517 517
      * 
518 518
      * @param  integer $id
519
-     * @param  array   $relations
519
+     * @param  string[]   $relations
520 520
      * @param  array   $columns
521 521
      * @return object
522 522
      */
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
      * @param  array   $conditions array of conditions
533 533
      * @param  array   $relations
534 534
      * @param  string  $sortBy
535
-     * @param  boolean $desc
535
+     * @param  integer $desc
536 536
      * @param  array   $columns
537 537
      * @return collection
538 538
      */
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
      * @param  array   $conditions array of conditions
565 565
      * @param  integer $perPage
566 566
      * @param  string  $sortBy
567
-     * @param  boolean $desc
567
+     * @param  integer $desc
568 568
      * @param  array   $columns
569 569
      * @return collection
570 570
      */
Please login to merge, or discard this patch.
Modules/V1/Notifications/Repositories/PushNotificationDeviceRepository.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
      * Register the given device to the logged in user.
22 22
      *
23 23
      * @param  string $data
24
-     * @return void
24
+     * @return boolean
25 25
      */
26 26
     public function registerDevice($data)
27 27
     {
Please login to merge, or discard this patch.