Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282314
ArcanistConstructorParenthesesXHPASTLinterRule.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
745 B
Referenced Files
None
Subscribers
None
ArcanistConstructorParenthesesXHPASTLinterRule.php
View Options
<?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
Details
Attached
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)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment