Skip to content

Commit b7a6dde

Browse files
committed
Code formatting.
1 parent c1775b5 commit b7a6dde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WS/Utils/Collections/IteratorStream.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function walk(callable $consumer, ?int $limit = null): Stream
5454
if ($consumerRes === false) {
5555
break;
5656
}
57-
if ($i +1 >= $iterationsCount) {
57+
if ($i + 1 >= $iterationsCount) {
5858
break;
5959
}
6060
}
@@ -72,7 +72,7 @@ public function filter(callable $predicate): Stream
7272
$iterator->rewind();
7373
$i = 0;
7474
while ($iterator->valid()) {
75-
if (!$this->isExcluded($i)){
75+
if (!$this->isExcluded($i)) {
7676
$item = $iterator->current();
7777
!$predicate($item) && $this->exclude($i);
7878
}

0 commit comments

Comments
 (0)