Skip to content

Commit

Permalink
Fix CS.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jan 30, 2021
1 parent e4fa034 commit 7705b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Operation/Apply.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static function (Iterator $iterator) use ($callbacks): Generator {
$continue = true;

foreach ($iterator as $key => $value) {
if ($continue !== false) {
if (false !== $continue) {
foreach ($callbacks as $callback) {
if (true === $continue = $callback($value, $key)) {
continue;
Expand Down

0 comments on commit 7705b94

Please sign in to comment.