Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100710392
PhabricatorCachePurger.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
Sun, Feb 2, 02:32
Size
606 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 02:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24018641
Attached To
rPH Phabricator
PhabricatorCachePurger.php
View Options
<?php
abstract
class
PhabricatorCachePurger
extends
Phobject
{
private
$viewer
;
abstract
public
function
purgeCache
();
final
public
function
setViewer
(
PhabricatorUser
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
final
public
function
getViewer
()
{
return
$this
->
viewer
;
}
final
public
function
getPurgerKey
()
{
return
$this
->
getPhobjectClassConstant
(
'PURGERKEY'
);
}
final
public
static
function
getAllPurgers
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getPurgerKey'
)
->
execute
();
}
}
Event Timeline
Log In to Comment