Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97494896
PhabricatorInlineCommentInterface.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, Jan 4, 14:36
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 6, 14:36 (2 d)
Engine
blob
Format
Raw Data
Handle
23416989
Attached To
rPH Phabricator
PhabricatorInlineCommentInterface.php
View Options
<?php
/**
* Shared interface used by Differential and Diffusion inline comments.
*/
interface
PhabricatorInlineCommentInterface
extends
PhabricatorMarkupInterface
{
const
MARKUP_FIELD_BODY
=
'markup:body'
;
public
function
setChangesetID
(
$id
);
public
function
getChangesetID
();
public
function
setIsNewFile
(
$is_new
);
public
function
getIsNewFile
();
public
function
setLineNumber
(
$number
);
public
function
getLineNumber
();
public
function
setLineLength
(
$length
);
public
function
getLineLength
();
public
function
setReplyToCommentPHID
(
$phid
);
public
function
getReplyToCommentPHID
();
public
function
setHasReplies
(
$has_replies
);
public
function
getHasReplies
();
public
function
setContent
(
$content
);
public
function
getContent
();
public
function
setCache
(
$cache
);
public
function
getCache
();
public
function
setAuthorPHID
(
$phid
);
public
function
getAuthorPHID
();
public
function
setSyntheticAuthor
(
$synthetic_author
);
public
function
getSyntheticAuthor
();
public
function
isCompatible
(
PhabricatorInlineCommentInterface
$inline
);
public
function
isDraft
();
public
function
save
();
public
function
delete
();
}
Event Timeline
Log In to Comment