Skip to content

Commit d981ece

Browse files
Fix CS/WS issues
1 parent 6de2ea7 commit d981ece

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/Framework/Constraint/Operator/LogicalNot.php

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,13 @@ public static function negate(string $string): string
5454
preg_match('/(\'[\w\W]*\')([\w\W]*)(\'[\w\W]*\')/i', $string, $matches);
5555
}
5656

57-
$positives = array_map(static function (string $s)
58-
{
59-
return '/\\b' . preg_quote($s, '/') . '/';
60-
}, $positives);
57+
$positives = array_map(
58+
static function (string $s)
59+
{
60+
return '/\\b' . preg_quote($s, '/') . '/';
61+
},
62+
$positives,
63+
);
6164

6265
if (count($matches) > 0) {
6366
$nonInput = $matches[2];

0 commit comments

Comments
 (0)