Completed
Push — master ( a7be99...859bad )
by Sherif
02:52
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, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
      * Reset the given user's password.
260 260
      *
261 261
      * @param  array  $credentials
262
-     * @return array
262
+     * @return string|null
263 263
      */
264 264
     public function resetPassword($credentials)
265 265
     {
Please login to merge, or discard this patch.
src/Modules/V1/Core/AbstractRepositories/AbstractRepository.php 1 patch
Doc Comments   +9 added lines, -9 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
      */
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
     /**
198 198
      * Save the given model to the storage.
199 199
      * 
200
-     * @param  array   $data
200
+     * @param  string   $data
201 201
      * @return void
202 202
      */
203 203
     public function save(array $data)
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
      * Update record in the storage based on the given
443 443
      * condition.
444 444
      * 
445
-     * @param  var $value condition value
445
+     * @param  integer $value condition value
446 446
      * @param  array $data
447 447
      * @param  string $attribute condition column name
448 448
      * @return void
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
      * id.
500 500
      * 
501 501
      * @param  integer $id
502
-     * @param  array   $relations
502
+     * @param  string[]   $relations
503 503
      * @param  array   $columns
504 504
      * @return object
505 505
      */
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
      * @param  array   $conditions array of conditions
516 516
      * @param  array   $relations
517 517
      * @param  string  $sortBy
518
-     * @param  boolean $desc
518
+     * @param  integer $desc
519 519
      * @param  array   $columns
520 520
      * @return collection
521 521
      */
@@ -547,7 +547,7 @@  discard block
 block discarded – undo
547 547
      * @param  array   $conditions array of conditions
548 548
      * @param  integer $perPage
549 549
      * @param  string  $sortBy
550
-     * @param  boolean $desc
550
+     * @param  integer $desc
551 551
      * @param  array   $columns
552 552
      * @return collection
553 553
      */
Please login to merge, or discard this patch.