Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105785040
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
Wed, Mar 19, 18:36
Size
692 B
Mime Type
text/x-php
Expires
Fri, Mar 21, 18:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25015145
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