Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialInlineComment.php
| Show First 20 Lines • Show All 210 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) { | ||||
| // 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 | |||||