Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116790275
PhabricatorFactEngine.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
Mon, Jun 9, 06:03
Size
636 B
Mime Type
text/x-php
Expires
Wed, Jun 11, 06:03 (2 d)
Engine
blob
Format
Raw Data
Handle
26673367
Attached To
rPH Phabricator
PhabricatorFactEngine.php
View Options
<?php
abstract
class
PhabricatorFactEngine
extends
Phobject
{
final
public
static
function
loadAllEngines
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
execute
();
}
public
function
getFactSpecs
(
array
$fact_types
)
{
return
array
();
}
public
function
shouldComputeRawFactsForObject
(
PhabricatorLiskDAO
$object
)
{
return
false
;
}
public
function
computeRawFactsForObject
(
PhabricatorLiskDAO
$object
)
{
return
array
();
}
public
function
shouldComputeAggregateFacts
()
{
return
false
;
}
public
function
computeAggregateFacts
()
{
return
array
();
}
}
Event Timeline
Log In to Comment