Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F115554072
PhabricatorRepositoryCommitRef.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, Jun 1, 17:50
Size
596 B
Mime Type
text/x-php
Expires
Tue, Jun 3, 17:50 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26498973
Attached To
rPH Phabricator
PhabricatorRepositoryCommitRef.php
View Options
<?php
final
class
PhabricatorRepositoryCommitRef
{
private
$identifier
;
private
$epoch
;
private
$branch
;
public
function
setIdentifier
(
$identifier
)
{
$this
->
identifier
=
$identifier
;
return
$this
;
}
public
function
getIdentifier
()
{
return
$this
->
identifier
;
}
public
function
setEpoch
(
$epoch
)
{
$this
->
epoch
=
$epoch
;
return
$this
;
}
public
function
getEpoch
()
{
return
$this
->
epoch
;
}
public
function
setBranch
(
$branch
)
{
$this
->
branch
=
$branch
;
return
$this
;
}
public
function
getBranch
()
{
return
$this
->
branch
;
}
}
Event Timeline
Log In to Comment