Completed
Pull Request — master (#186)
by Vladimir
10:46
created
src/QueryBuilder/QueryBuilder.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     /**
295 295
      * Request that a timestamp is before the specified time
296 296
      *
297
-     * @param string|TimeDate $time      The timestamp to compare to
297
+     * @param Carbon\Carbon $time      The timestamp to compare to
298 298
      * @param bool            $inclusive Whether to include the given timestamp
299 299
      * @param bool            $reverse   Whether to reverse the results
300 300
      *
@@ -859,6 +859,7 @@  discard block
 block discarded – undo
859 859
 
860 860
     /**
861 861
      * Generates all the WHERE conditions for the query
862
+     * @param string $mode
862 863
      * @return string
863 864
      */
864 865
     private function createQueryConditions($mode)
Please login to merge, or discard this patch.
src/QueryBuilder/QueryBuilderFlex.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,6 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
     /**
92 92
      * {@inheritdoc}
93
+     * @param integer $limit
93 94
      */
94 95
     public function limit($limit): IQueryBuilderHandler
95 96
     {
@@ -179,7 +180,7 @@  discard block
 block discarded – undo
179 180
     /**
180 181
      * Request that a specific model is not returned.
181 182
      *
182
-     * @param  Model|int $model The ID or model you don't want to get
183
+     * @param  Player $model The ID or model you don't want to get
183 184
      *
184 185
      * @return static
185 186
      */
@@ -197,7 +198,7 @@  discard block
 block discarded – undo
197 198
     /**
198 199
      * Find the first matching model in the database or return an invalid model.
199 200
      *
200
-     * @param mixed  $value      The value to search for
201
+     * @param string  $value      The value to search for
201 202
      * @param string $columnName The column name we'll be checking
202 203
      *
203 204
      * @throws \Pecee\Pixie\Exception
Please login to merge, or discard this patch.