Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282317
ArcanistInterfaceAbstractMethodXHPASTLinterRule.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
893 B
Referenced Files
None
Subscribers
None
ArcanistInterfaceAbstractMethodXHPASTLinterRule.php
View Options
<?php
final
class
ArcanistInterfaceAbstractMethodXHPASTLinterRule
extends
ArcanistXHPASTLinterRule
{
const
ID
=
118
;
public
function
getLintName
(
)
{
return
pht
(
'`%s` Methods Cannot Be Marked `%s`'
,
'interface'
,
'abstract'
)
;
}
public
function
process
(
XHPASTNode
$root
)
{
$interfaces
=
$root
->
selectDescendantsOfType
(
'n_INTERFACE_DECLARATION'
)
;
foreach
(
$interfaces
as
$interface
)
{
$methods
=
$interface
->
selectDescendantsOfType
(
'n_METHOD_DECLARATION'
)
;
foreach
(
$methods
as
$method
)
{
$modifiers
=
$this
->
getModifiers
(
$method
)
;
if
(
idx
(
$modifiers
,
'abstract'
)
)
{
$this
->
raiseLintAtNode
(
$method
,
pht
(
'`%s` methods cannot be marked as `%s`. This construct will '
.
'cause a fatal error.'
,
'interface'
,
'abstract'
)
)
;
}
}
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 06:58 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1123970
Default Alt Text
ArcanistInterfaceAbstractMethodXHPASTLinterRule.php (893 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment