We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6de2ea7 commit d981eceCopy full SHA for d981ece
src/Framework/Constraint/Operator/LogicalNot.php
@@ -54,10 +54,13 @@ public static function negate(string $string): string
54
preg_match('/(\'[\w\W]*\')([\w\W]*)(\'[\w\W]*\')/i', $string, $matches);
55
}
56
57
- $positives = array_map(static function (string $s)
58
- {
59
- return '/\\b' . preg_quote($s, '/') . '/';
60
- }, $positives);
+ $positives = array_map(
+ static function (string $s)
+ {
+ return '/\\b' . preg_quote($s, '/') . '/';
61
+ },
62
+ $positives,
63
+ );
64
65
if (count($matches) > 0) {
66
$nonInput = $matches[2];
0 commit comments