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.
no_singleline_whitespace_before_semicolons
1 parent 00342c4 commit faf2e75Copy full SHA for faf2e75
.php-cs-fixer.php
@@ -41,6 +41,7 @@
41
'new_with_parentheses' => true,
42
'no_extra_blank_lines' => true,
43
'no_mixed_echo_print' => true,
44
+ 'no_singleline_whitespace_before_semicolons' => true,
45
'no_trailing_whitespace' => true,
46
'ordered_class_elements' => true,
47
'random_api_migration' => true,
include/errors.inc
@@ -582,7 +582,7 @@ function get_legacy_manual_urls(string $uri): array
582
if (count($matches) < 2) {
583
return '';
584
}
585
- return $matches[1] ;
+ return $matches[1];
586
}, $uri);
587
588
if (!isset($pages_ids[$page_id])) {
0 commit comments