Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100869862
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
Mon, Feb 3, 11:22
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Feb 5, 11:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24019174
Attached To
rPH Phabricator
PhabricatorRepositoryCommitRef.php
View Options
<?php
final
class
PhabricatorRepositoryCommitRef
extends
Phobject
{
private
$identifier
;
private
$epoch
;
private
$branch
;
private
$canCloseImmediately
;
private
$parents
=
array
();
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
;
}
public
function
setCanCloseImmediately
(
$can_close_immediately
)
{
$this
->
canCloseImmediately
=
$can_close_immediately
;
return
$this
;
}
public
function
getCanCloseImmediately
()
{
return
$this
->
canCloseImmediately
;
}
public
function
setParents
(
array
$parents
)
{
$this
->
parents
=
$parents
;
return
$this
;
}
public
function
getParents
()
{
return
$this
->
parents
;
}
}
Event Timeline
Log In to Comment