Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100758630
PhabricatorAuthSessionEngineExtension.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, 12:30
Size
524 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 12:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24028983
Attached To
rPH Phabricator
PhabricatorAuthSessionEngineExtension.php
View Options
<?php
abstract
class
PhabricatorAuthSessionEngineExtension
extends
Phobject
{
final
public
function
getExtensionKey
()
{
return
$this
->
getPhobjectClassConstant
(
'EXTENSIONKEY'
);
}
final
public
static
function
getAllExtensions
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getExtensionKey'
)
->
execute
();
}
abstract
public
function
getExtensionName
();
public
function
didLogout
(
PhabricatorUser
$user
,
array
$sessions
)
{
return
;
}
}
Event Timeline
Log In to Comment