Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3294914
ArcanistSummaryLintRenderer.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
857 B
Referenced Files
None
Subscribers
None
ArcanistSummaryLintRenderer.php
View Options
<?php
final
class
ArcanistSummaryLintRenderer
extends
ArcanistLintRenderer
{
const
RENDERERKEY
=
'summary'
;
public
function
renderLintResult
(
ArcanistLintResult
$result
)
{
$messages
=
$result
->
getMessages
(
)
;
$path
=
$result
->
getPath
(
)
;
$text
=
array
(
)
;
foreach
(
$messages
as
$message
)
{
$name
=
$message
->
getName
(
)
;
$severity
=
ArcanistLintSeverity
::
getStringForSeverity
(
$message
->
getSeverity
(
)
)
;
$line
=
$message
->
getLine
(
)
;
$text
[
]
=
"{$path}:{$line}:{$severity}: {$name}\n"
;
}
$this
->
writeOut
(
implode
(
''
,
$text
)
)
;
}
public
function
renderResultCode
(
$result_code
)
{
if
(
$result_code
==
ArcanistLintWorkflow
::
RESULT_OKAY
)
{
$view
=
new
PhutilConsoleInfo
(
pht
(
'OKAY'
)
,
pht
(
'No lint messages.'
)
)
;
$this
->
writeOut
(
$view
->
drawConsoleString
(
)
)
;
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Mar 26, 23:52 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114654
Default Alt Text
ArcanistSummaryLintRenderer.php (857 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment