Page MenuHomePhabricator

D14499.id35074.diff
No OneTemporary

D14499.id35074.diff

diff --git a/src/lint/linter/xhpast/rules/ArcanistBraceFormattingXHPASTLinterRule.php b/src/lint/linter/xhpast/rules/ArcanistBraceFormattingXHPASTLinterRule.php
--- a/src/lint/linter/xhpast/rules/ArcanistBraceFormattingXHPASTLinterRule.php
+++ b/src/lint/linter/xhpast/rules/ArcanistBraceFormattingXHPASTLinterRule.php
@@ -61,10 +61,17 @@
}
$type = $parent->getTypeName();
- if ($type != 'n_STATEMENT_LIST' && $type != 'n_DECLARE') {
- $this->raiseLintAtNode(
- $node,
- pht('Use braces to surround a statement block.'));
+ switch ($type) {
+ case 'n_DECLARE':
+ case 'n_NAMESPACE':
+ case 'n_STATEMENT_LIST':
+ break;
+
+ default:
+ $this->raiseLintAtNode(
+ $node,
+ pht('Use braces to surround a statement block.'));
+ break;
}
}

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 18, 6:37 AM (6 d, 7 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704064
Default Alt Text
D14499.id35074.diff (876 B)

Event Timeline