diff options
Diffstat (limited to 'build/integration/features')
-rw-r--r-- | build/integration/features/bootstrap/CommandLine.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/CommandLine.php b/build/integration/features/bootstrap/CommandLine.php index d6e614be90f..46941025012 100644 --- a/build/integration/features/bootstrap/CommandLine.php +++ b/build/integration/features/bootstrap/CommandLine.php @@ -106,7 +106,7 @@ trait CommandLine { $results = []; // the exception text usually appears after an "[Exception"] row foreach (explode("\n", $input) as $line) { - if (strpos($line, $text) >= 0) { + if (strpos($line, $text) !== false) { $results[] = $line; } } |