@@ -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) |
@@ -90,6 +90,7 @@ discard block |
||
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 |
||
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 |
||
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 |