Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120099751
DiffusionCommitRef.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
Tue, Jul 1, 22:50
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jul 3, 22:50 (2 d)
Engine
blob
Format
Raw Data
Handle
27138609
Attached To
rPH Phabricator
DiffusionCommitRef.php
View Options
<?php
final
class
DiffusionCommitRef
extends
Phobject
{
private
$message
;
private
$authorName
;
private
$authorEmail
;
private
$committerName
;
private
$committerEmail
;
public
function
setCommitterEmail
(
$committer_email
)
{
$this
->
committerEmail
=
$committer_email
;
return
$this
;
}
public
function
getCommitterEmail
()
{
return
$this
->
committerEmail
;
}
public
function
setCommitterName
(
$committer_name
)
{
$this
->
committerName
=
$committer_name
;
return
$this
;
}
public
function
getCommitterName
()
{
return
$this
->
committerName
;
}
public
function
setAuthorEmail
(
$author_email
)
{
$this
->
authorEmail
=
$author_email
;
return
$this
;
}
public
function
getAuthorEmail
()
{
return
$this
->
authorEmail
;
}
public
function
setAuthorName
(
$author_name
)
{
$this
->
authorName
=
$author_name
;
return
$this
;
}
public
function
getAuthorName
()
{
return
$this
->
authorName
;
}
public
function
setMessage
(
$message
)
{
$this
->
message
=
$message
;
return
$this
;
}
public
function
getMessage
()
{
return
$this
->
message
;
}
}
Event Timeline
Log In to Comment