Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100980344
HarbormasterArcLintBuildStepImplementation.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Feb 4, 12:13
Size
905 B
Mime Type
text/x-php
Expires
Thu, Feb 6, 12:13 (2 d)
Engine
blob
Format
Raw Data
Handle
24027391
Attached To
rPH Phabricator
HarbormasterArcLintBuildStepImplementation.php
View Options
<?php
final
class
HarbormasterArcLintBuildStepImplementation
extends
HarbormasterBuildStepImplementation
{
const
STEPKEY
=
'arcanist.lint'
;
public
function
getBuildStepAutotargetPlanKey
()
{
return
HarbormasterBuildArcanistAutoplan
::
PLANKEY
;
}
public
function
getBuildStepAutotargetStepKey
()
{
return
self
::
STEPKEY
;
}
public
function
shouldRequireAutotargeting
()
{
return
true
;
}
public
function
getName
()
{
return
pht
(
'Arcanist Lint Results'
);
}
public
function
getGenericDescription
()
{
return
pht
(
'Automatic `arc lint` step.'
);
}
public
function
getBuildStepGroupKey
()
{
return
HarbormasterBuiltinBuildStepGroup
::
GROUPKEY
;
}
public
function
execute
(
HarbormasterBuild
$build
,
HarbormasterBuildTarget
$build_target
)
{
return
;
}
public
function
shouldWaitForMessage
(
HarbormasterBuildTarget
$target
)
{
return
true
;
}
}
Event Timeline
Log In to Comment