Changeset View
Changeset View
Standalone View
Standalone View
src/applications/audit/storage/PhabricatorAuditInlineComment.php
| Show First 20 Lines • Show All 293 Lines • ▼ Show 20 Lines | public function setIsDeleted($is_deleted) { | ||||
| $this->proxy->setIsDeleted($is_deleted); | $this->proxy->setIsDeleted($is_deleted); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getIsDeleted() { | public function getIsDeleted() { | ||||
| return $this->proxy->getIsDeleted(); | return $this->proxy->getIsDeleted(); | ||||
| } | } | ||||
| public function setFixedState($state) { | |||||
| $this->proxy->setFixedState($state); | |||||
| return $this; | |||||
| } | |||||
| public function getFixedState() { | |||||
| return $this->proxy->getFixedState(); | |||||
| } | |||||
| /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | ||||
| public function getMarkupFieldKey($field) { | public function getMarkupFieldKey($field) { | ||||
| return 'AI:'.$this->getID(); | return 'AI:'.$this->getID(); | ||||
| } | } | ||||
| Show All 18 Lines | |||||