Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialInlineComment.php
| Show First 20 Lines • Show All 201 Lines • ▼ Show 20 Lines | public function setHasReplies($has_replies) { | ||||
| $this->proxy->setHasReplies($has_replies); | $this->proxy->setHasReplies($has_replies); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getHasReplies() { | public function getHasReplies() { | ||||
| return $this->proxy->getHasReplies(); | return $this->proxy->getHasReplies(); | ||||
| } | } | ||||
| public function setIsDeleted($is_deleted) { | |||||
| $this->proxy->setIsDeleted($is_deleted); | |||||
| return $this; | |||||
| } | |||||
| public function getIsDeleted() { | |||||
| return $this->proxy->getIsDeleted(); | |||||
| } | |||||
| /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | ||||
| public function getMarkupFieldKey($field) { | public function getMarkupFieldKey($field) { | ||||
| // We can't use ID because synthetic comments don't have it. | // We can't use ID because synthetic comments don't have it. | ||||
| return 'DI:'.PhabricatorHash::digest($this->getContent()); | return 'DI:'.PhabricatorHash::digest($this->getContent()); | ||||
| } | } | ||||
| Show All 19 Lines | |||||