Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121665809
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
Sat, Jul 12, 23:20
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jul 14, 23:20 (2 d)
Engine
blob
Format
Raw Data
Handle
27370489
Attached To
rPH Phabricator
PhabricatorRepositoryCommitRef.php
View Options
<?php
final
class
PhabricatorRepositoryCommitRef
{
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