Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F19081976
PhabricatorFactEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
803 B
Referenced Files
None
Subscribers
None
PhabricatorFactEngine.php
View Options
<?php
abstract
class
PhabricatorFactEngine
{
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
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Dec 4, 9:01 AM (1 d, 21 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8329261
Default Alt Text
PhabricatorFactEngine.php (803 B)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment