Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295294
ArcanistCommentSpacingXHPASTLinterRule.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
754 B
Referenced Files
None
Subscribers
None
ArcanistCommentSpacingXHPASTLinterRule.php
View Options
<?php
final
class
ArcanistCommentSpacingXHPASTLinterRule
extends
ArcanistXHPASTLinterRule
{
const
ID
=
34
;
public
function
getLintName
(
)
{
return
pht
(
'Comment Spaces'
)
;
}
public
function
getLintSeverity
(
)
{
return
ArcanistLintSeverity
::
SEVERITY_ADVICE
;
}
public
function
process
(
XHPASTNode
$root
)
{
foreach
(
$root
->
selectTokensOfType
(
'T_COMMENT'
)
as
$comment
)
{
$value
=
$comment
->
getValue
(
)
;
if
(
$value
[
0
]
!==
'#'
)
{
$match
=
null
;
if
(
preg_match
(
'@^(/[/*]+)[^/*\s]@'
,
$value
,
$match
)
)
{
$this
->
raiseLintAtOffset
(
$comment
->
getOffset
(
)
,
pht
(
'Put space after comment start.'
)
,
$match
[
1
]
,
$match
[
1
]
.
' '
)
;
}
}
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:41 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1123393
Default Alt Text
ArcanistCommentSpacingXHPASTLinterRule.php (754 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment