Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93932766
PhabricatorAuthRevoker.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, Dec 2, 14:59
Size
829 B
Mime Type
text/x-php
Expires
Wed, Dec 4, 14:59 (2 d)
Engine
blob
Format
Raw Data
Handle
22724155
Attached To
rPH Phabricator
PhabricatorAuthRevoker.php
View Options
<?php
abstract
class
PhabricatorAuthRevoker
extends
Phobject
{
private
$viewer
;
abstract
public
function
revokeAllCredentials
();
abstract
public
function
revokeCredentialsFrom
(
$object
);
abstract
public
function
getRevokerName
();
abstract
public
function
getRevokerDescription
();
public
function
getRevokerNextSteps
()
{
return
null
;
}
public
function
setViewer
(
PhabricatorUser
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
public
function
getViewer
()
{
return
$this
->
viewer
;
}
final
public
function
getRevokerKey
()
{
return
$this
->
getPhobjectClassConstant
(
'REVOKERKEY'
);
}
final
public
static
function
getAllRevokers
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getRevokerKey'
)
->
execute
();
}
}
Event Timeline
Log In to Comment