Skip to content

Commit 67a450c

Browse files
committed
cs fix
1 parent cdeca68 commit 67a450c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Finder.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ public static function last(iterable $data, callable $filter): mixed
5151
// ensure data is array for end(), key(), current(), prev() usage
5252
Assert::isArray($data);
5353

54-
// Use end(), key(), current(), prev() usage instead of array_reverse() to avoid immediatelly got "Out of memory" on many data
54+
// Use end(), key(), current(), prev() usage instead of array_reverse()
55+
// to avoid immediatelly got "Out of memory" on many data
5556
// see https://3v4l.org/IHo2H vs https://3v4l.org/Wqejc
5657

5758
// go to end of array

0 commit comments

Comments
 (0)