Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105856027
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
Thu, Mar 20, 07:30
Size
820 B
Mime Type
text/x-php
Expires
Sat, Mar 22, 07:30 (2 d)
Engine
blob
Format
Raw Data
Handle
25002280
Attached To
rPH Phabricator
PhabricatorFactEngine.php
View Options
<?php
abstract
class
PhabricatorFactEngine
extends
Phobject
{
final
public
static
function
loadAllEngines
()
{
$classes
=
id
(
new
PhutilSymbolLoader
())
->
setAncestorClass
(
__CLASS__
)
->
setConcreteOnly
(
true
)
->
selectAndLoadSymbols
();
$objects
=
array
();
foreach
(
$classes
as
$class
)
{
$objects
[]
=
newv
(
$class
[
'name'
],
array
());
}
return
$objects
;
}
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