From 7705b949fe2f8e047f2442eb333de1deb8366212 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 29 Jan 2021 22:29:01 +0100 Subject: [PATCH] Fix CS. --- src/Operation/Apply.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Operation/Apply.php b/src/Operation/Apply.php index 28680c805..e643b549a 100644 --- a/src/Operation/Apply.php +++ b/src/Operation/Apply.php @@ -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;