Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96786239
PhabricatorUserSSHKey.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
Mon, Dec 30, 20:32
Size
397 B
Mime Type
text/x-php
Expires
Wed, Jan 1, 20:32 (2 d)
Engine
blob
Format
Raw Data
Handle
23226251
Attached To
rPH Phabricator
PhabricatorUserSSHKey.php
View Options
<?php
final
class
PhabricatorUserSSHKey
extends
PhabricatorUserDAO
{
protected
$userPHID
;
protected
$name
;
protected
$keyType
;
protected
$keyBody
;
protected
$keyHash
;
protected
$keyComment
;
public
function
getEntireKey
()
{
$parts
=
array
(
$this
->
getKeyType
(),
$this
->
getKeyBody
(),
$this
->
getKeyComment
(),
);
return
trim
(
implode
(
' '
,
$parts
));
}
}
Event Timeline
Log In to Comment