Changeset View
Changeset View
Standalone View
Standalone View
src/applications/audit/storage/PhabricatorAuditInlineComment.php
| Show First 20 Lines • Show All 325 Lines • ▼ Show 20 Lines | public function setIsGhost($is_ghost) { | ||||
| $this->isGhost = $is_ghost; | $this->isGhost = $is_ghost; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getIsGhost() { | public function getIsGhost() { | ||||
| return $this->isGhost; | return $this->isGhost; | ||||
| } | } | ||||
| public function getDateModified() { | |||||
| return $this->proxy->getDateModified(); | |||||
| } | |||||
| public function getDateCreated() { | |||||
| return $this->proxy->getDateCreated(); | |||||
| } | |||||
| /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | ||||
| public function getMarkupFieldKey($field) { | public function getMarkupFieldKey($field) { | ||||
| return 'AI:'.$this->getID(); | return 'AI:'.$this->getID(); | ||||
| } | } | ||||
| Show All 18 Lines | |||||