@@ -294,7 +294,7 @@ discard block |
||
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 |
||
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) |
@@ -104,6 +104,7 @@ discard block |
||
104 | 104 | |
105 | 105 | /** |
106 | 106 | * {@inheritdoc} |
107 | + * @param integer $limit |
|
107 | 108 | */ |
108 | 109 | public function limit($limit): IQueryBuilderHandler |
109 | 110 | { |
@@ -193,7 +194,7 @@ discard block |
||
193 | 194 | /** |
194 | 195 | * Request that a specific model is not returned. |
195 | 196 | * |
196 | - * @param Model|int $model The ID or model you don't want to get |
|
197 | + * @param Player $model The ID or model you don't want to get |
|
197 | 198 | * |
198 | 199 | * @return static |
199 | 200 | */ |
@@ -211,7 +212,7 @@ discard block |
||
211 | 212 | /** |
212 | 213 | * Find the first matching model in the database or return an invalid model. |
213 | 214 | * |
214 | - * @param mixed $value The value to search for |
|
215 | + * @param string $value The value to search for |
|
215 | 216 | * @param string $columnName The column name we'll be checking |
216 | 217 | * |
217 | 218 | * @throws \Pecee\Pixie\Exception |
@@ -262,7 +263,7 @@ discard block |
||
262 | 263 | /** |
263 | 264 | * Get the results of query as an array. |
264 | 265 | * |
265 | - * @param array|string $columns |
|
266 | + * @param string $columns |
|
266 | 267 | * |
267 | 268 | * @throws \Pecee\Pixie\Exception |
268 | 269 | * |