Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121348062
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
Thu, Jul 10, 05:01
Size
692 B
Mime Type
text/x-php
Expires
Sat, Jul 12, 05:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27313529
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