Changeset View
Changeset View
Standalone View
Standalone View
src/applications/audit/storage/PhabricatorAuditInlineComment.php
| Show First 20 Lines • Show All 284 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) { | ||||
| return 'AI:'.$this->getID(); | return 'AI:'.$this->getID(); | ||||
| } | } | ||||
| Show All 18 Lines | |||||