Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96119109
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
Sun, Dec 22, 20:15
Size
667 B
Mime Type
text/x-php
Expires
Tue, Dec 24, 20:15 (2 d)
Engine
blob
Format
Raw Data
Handle
23126973
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
);
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