Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93167853
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
Tue, Nov 26, 17:46
Size
820 B
Mime Type
text/x-php
Expires
Thu, Nov 28, 17:46 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22585561
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