Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282695
ArcanistUnitTestableLintEngine.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
634 B
Referenced Files
None
Subscribers
None
ArcanistUnitTestableLintEngine.php
View Options
<?php
/**
* Lint engine for use in constructing test cases. See
* @{class:ArcanistLinterTestCase}.
*/
final
class
ArcanistUnitTestableLintEngine
extends
ArcanistLintEngine
{
protected
$linters
=
array
(
)
;
public
function
addLinter
(
$linter
)
{
$this
->
linters
[
]
=
$linter
;
return
$this
;
}
public
function
addFileData
(
$path
,
$data
)
{
$this
->
fileData
[
$path
]
=
$data
;
return
$this
;
}
public
function
pathExists
(
$path
)
{
if
(
idx
(
$this
->
fileData
,
$path
)
!==
null
)
{
return
true
;
}
return
parent
::
pathExists
(
$path
)
;
}
public
function
buildLinters
(
)
{
return
$this
->
linters
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 10:06 (3 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114378
Default Alt Text
ArcanistUnitTestableLintEngine.php (634 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment