diff --git a/src/Illuminate/Collections/LazyCollection.php b/src/Illuminate/Collections/LazyCollection.php index 601e0717590a..daf811bfcadd 100644 --- a/src/Illuminate/Collections/LazyCollection.php +++ b/src/Illuminate/Collections/LazyCollection.php @@ -113,7 +113,7 @@ public function all() /** * Eager load all items into a new lazy collection backed by an array. * - * @return static + * @return static */ public function eager() { @@ -123,7 +123,7 @@ public function eager() /** * Cache values as they're enumerated. * - * @return static + * @return static */ public function remember() { @@ -334,7 +334,7 @@ public function countBy($countBy = null) * Get the items that are not present in the given items. * * @param \Illuminate\Contracts\Support\Arrayable|iterable $items - * @return static + * @return static */ public function diff($items) { @@ -1091,7 +1091,7 @@ public function replaceRecursive($items) /** * Reverse items order. * - * @return static + * @return static */ public function reverse() { @@ -1186,7 +1186,7 @@ public function after($value, $strict = false) /** * Shuffle the items in the collection. * - * @return static + * @return static */ public function shuffle() { @@ -1549,7 +1549,7 @@ public function sortKeysUsing(callable $callback) * Take the first or last {$limit} items. * * @param int $limit - * @return static + * @return static */ public function take($limit) { @@ -1592,7 +1592,7 @@ public function take($limit) * Take items in the collection until the given condition is met. * * @param TValue|callable(TValue,TKey): bool $value - * @return static + * @return static */ public function takeUntil($value) { @@ -1614,7 +1614,7 @@ public function takeUntil($value) * Take items in the collection until a given point in time. * * @param \DateTimeInterface $timeout - * @return static + * @return static */ public function takeUntilTimeout(DateTimeInterface $timeout) { @@ -1639,7 +1639,7 @@ public function takeUntilTimeout(DateTimeInterface $timeout) * Take items in the collection while the given condition is met. * * @param TValue|callable(TValue,TKey): bool $value - * @return static + * @return static */ public function takeWhile($value) { @@ -1653,7 +1653,7 @@ public function takeWhile($value) * Pass each item in the collection to the given callback, lazily. * * @param callable(TValue, TKey): mixed $callback - * @return static + * @return static */ public function tapEach(callable $callback) { @@ -1713,7 +1713,7 @@ public function undot() * * @param (callable(TValue, TKey): mixed)|string|null $key * @param bool $strict - * @return static + * @return static */ public function unique($key = null, $strict = false) {