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.
unary_operator_spaces
1 parent b8df60d commit 1108131Copy full SHA for 1108131
.php-cs-fixer.php
@@ -48,6 +48,7 @@
48
'strict_param' => true,
49
'switch_case_space' => true,
50
'trim_array_spaces' => true,
51
+ 'unary_operator_spaces' => true,
52
'visibility_required' => true,
53
'void_return' => true,
54
'whitespace_after_comma_in_array' => true,
include/email-validation.inc
@@ -12,7 +12,7 @@ function is_emailable_address($email)
12
{
13
$email = filter_var($email, FILTER_VALIDATE_EMAIL);
14
// No email, no validation
15
- if (! $email) {
+ if (!$email) {
16
return false;
17
}
18
0 commit comments