Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110296307
PhabricatorAuthSessionInfo.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
Fri, Apr 25, 14:28
Size
692 B
Mime Type
text/x-php
Expires
Sun, Apr 27, 14:28 (2 d)
Engine
blob
Format
Raw Data
Handle
25803235
Attached To
rPH Phabricator
PhabricatorAuthSessionInfo.php
View Options
<?php
final
class
PhabricatorAuthSessionInfo
extends
Phobject
{
private
$sessionType
;
private
$identityPHID
;
private
$isPartial
;
public
function
setSessionType
(
$session_type
)
{
$this
->
sessionType
=
$session_type
;
return
$this
;
}
public
function
getSessionType
()
{
return
$this
->
sessionType
;
}
public
function
setIdentityPHID
(
$identity_phid
)
{
$this
->
identityPHID
=
$identity_phid
;
return
$this
;
}
public
function
getIdentityPHID
()
{
return
$this
->
identityPHID
;
}
public
function
setIsPartial
(
$is_partial
)
{
$this
->
isPartial
=
$is_partial
;
return
$this
;
}
public
function
getIsPartial
()
{
return
$this
->
isPartial
;
}
}
Event Timeline
Log In to Comment