Changeset View
Changeset View
Standalone View
Standalone View
src/applications/audit/storage/PhabricatorAuditInlineComment.php
| <?php | <?php | ||||
| final class PhabricatorAuditInlineComment | final class PhabricatorAuditInlineComment | ||||
| implements PhabricatorInlineCommentInterface { | implements PhabricatorInlineCommentInterface { | ||||
| private $proxy; | private $proxy; | ||||
| private $syntheticAuthor; | private $syntheticAuthor; | ||||
| private $isGhost; | |||||
| public function __construct() { | public function __construct() { | ||||
| $this->proxy = new PhabricatorAuditTransactionComment(); | $this->proxy = new PhabricatorAuditTransactionComment(); | ||||
| } | } | ||||
| public function __clone() { | public function __clone() { | ||||
| $this->proxy = clone $this->proxy; | $this->proxy = clone $this->proxy; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 287 Lines • ▼ Show 20 Lines | public function setFixedState($state) { | ||||
| $this->proxy->setFixedState($state); | $this->proxy->setFixedState($state); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getFixedState() { | public function getFixedState() { | ||||
| return $this->proxy->getFixedState(); | return $this->proxy->getFixedState(); | ||||
| } | } | ||||
| public function setIsGhost($is_ghost) { | |||||
| $this->isGhost = $is_ghost; | |||||
| return $this; | |||||
| } | |||||
| public function getIsGhost() { | |||||
| return $this->isGhost; | |||||
| } | |||||
| /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | /* -( PhabricatorMarkupInterface Implementation )-------------------------- */ | ||||
| public function getMarkupFieldKey($field) { | public function getMarkupFieldKey($field) { | ||||
| return 'AI:'.$this->getID(); | return 'AI:'.$this->getID(); | ||||
| } | } | ||||
| Show All 18 Lines | |||||