Page MenuHomePhorge

ArcanistConstructorParenthesesXHPASTLinterRule.php
No OneTemporary

ArcanistConstructorParenthesesXHPASTLinterRule.php

<?php
final class ArcanistConstructorParenthesesXHPASTLinterRule
extends ArcanistXHPASTLinterRule {
const ID = 49;
public function getLintName() {
return pht('Constructor Parentheses');
}
public function getLintSeverity() {
return ArcanistLintSeverity::SEVERITY_ADVICE;
}
public function process(XHPASTNode $root) {
$nodes = $root->selectDescendantsOfType('n_NEW');
foreach ($nodes as $node) {
$class = $node->getChildByIndex(0);
$params = $node->getChildByIndex(1);
if ($params->getTypeName() == 'n_EMPTY') {
$this->raiseLintAtNode(
$class,
pht('Use parentheses when invoking a constructor.'),
$class->getConcreteString().'()');
}
}
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Mar 24, 06:57 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1135505
Default Alt Text
ArcanistConstructorParenthesesXHPASTLinterRule.php (745 B)

Event Timeline