Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/storage/DifferentialInlineComment.php
| Show First 20 Lines • Show All 249 Lines • ▼ Show 20 Lines | public function getIsGhost() { | ||||
| return $this->isGhost; | return $this->isGhost; | ||||
| } | } | ||||
| public function makeEphemeral() { | public function makeEphemeral() { | ||||
| $this->proxy->makeEphemeral(); | $this->proxy->makeEphemeral(); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| 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) { | ||||
| $content = $this->getMarkupText($field); | $content = $this->getMarkupText($field); | ||||
| return PhabricatorMarkupEngine::digestRemarkupContent($this, $content); | return PhabricatorMarkupEngine::digestRemarkupContent($this, $content); | ||||
| } | } | ||||
| Show All 19 Lines | |||||