@@ -207,7 +207,7 @@ public function whereKeyNot($id): self
207207 /**
208208 * Add a basic where clause to the query.
209209 *
210- * @param string|array|\ Closure $column
210+ * @param string|array|Closure $column
211211 * @param string $operator
212212 * @param mixed $value
213213 * @return $this
@@ -229,7 +229,7 @@ public function where($column, $operator = null, $value = null, string $boolean
229229 /**
230230 * Add an "or where" clause to the query.
231231 *
232- * @param \ Closure|array|string $column
232+ * @param Closure|array|string $column
233233 * @param string $operator
234234 * @param mixed $value
235235 * @return $this
@@ -283,7 +283,7 @@ public function find($id)
283283 /**
284284 * Find multiple models by their primary keys.
285285 *
286- * @param \Illuminate\Contracts\Support\ Arrayable|array $ids
286+ * @param Arrayable|array $ids
287287 */
288288 public function findMany ($ ids ): Collection
289289 {
@@ -422,7 +422,6 @@ public function getRelation(string $name): Relation
422422 /**
423423 * Chunk the results of a query by comparing numeric IDs.
424424 *
425- * @param null $column
426425 * @param string|null $alias
427426 */
428427 public function chunkById (int $ count , callable $ callback , $ column = null , $ alias = null ): bool
@@ -455,7 +454,7 @@ public function chunkById(int $count, callable $callback, $column = null, $alias
455454 }
456455
457456 $ lastId = $ results ->last ()
458- ->{$ alias };
457+ ->{$ alias };
459458
460459 unset($ results );
461460 } while ($ countResults === $ count );
@@ -506,7 +505,7 @@ public function paginate(
506505 $ perPage = $ perPage !== null && $ perPage !== 0 ? $ perPage : $ this ->model ->getPerPage ();
507506 $ results = ($ total = $ this ->toBase ()->getCountForPagination ())
508507 ? $ this ->forPage ($ page , $ perPage )
509- ->get ($ columns )
508+ ->get ()
510509 : $ this ->model ->newCollection ();
511510
512511 return $ this ->paginator ($ results , $ total , $ perPage , $ page , [
0 commit comments