Differential D12017 Diff 28942 src/infrastructure/diff/interface/PhabricatorInlineCommentInterface.php
Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/diff/interface/PhabricatorInlineCommentInterface.php
| Show All 13 Lines | interface PhabricatorInlineCommentInterface extends PhabricatorMarkupInterface { | ||||
| public function getIsNewFile(); | public function getIsNewFile(); | ||||
| public function setLineNumber($number); | public function setLineNumber($number); | ||||
| public function getLineNumber(); | public function getLineNumber(); | ||||
| public function setLineLength($length); | public function setLineLength($length); | ||||
| public function getLineLength(); | public function getLineLength(); | ||||
| public function setReplyToCommentPHID($phid); | |||||
| public function getReplyToCommentPHID(); | |||||
| public function setHasReplies($has_replies); | |||||
| public function getHasReplies(); | |||||
| public function setContent($content); | public function setContent($content); | ||||
| public function getContent(); | public function getContent(); | ||||
| public function setCache($cache); | public function setCache($cache); | ||||
| public function getCache(); | public function getCache(); | ||||
| public function setAuthorPHID($phid); | public function setAuthorPHID($phid); | ||||
| public function getAuthorPHID(); | public function getAuthorPHID(); | ||||
| Show All 11 Lines | |||||