Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/diff/interface/PhabricatorInlineComment.php
| Show First 20 Lines • Show All 207 Lines • ▼ Show 20 Lines | public function setIsEditing($is_editing) { | ||||
| $this->getStorageObject()->setAttribute('editing', (bool)$is_editing); | $this->getStorageObject()->setAttribute('editing', (bool)$is_editing); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getIsEditing() { | public function getIsEditing() { | ||||
| return (bool)$this->getStorageObject()->getAttribute('editing', false); | return (bool)$this->getStorageObject()->getAttribute('editing', false); | ||||
| } | } | ||||
| public function setDocumentEngineKey($engine_key) { | |||||
| $this->getStorageObject()->setAttribute('documentEngineKey', $engine_key); | |||||
| return $this; | |||||
| } | |||||
| public function getDocumentEngineKey() { | |||||
| return $this->getStorageObject()->getAttribute('documentEngineKey'); | |||||
| } | |||||
| public function getDateModified() { | public function getDateModified() { | ||||
| return $this->getStorageObject()->getDateModified(); | return $this->getStorageObject()->getDateModified(); | ||||
| } | } | ||||
| public function getDateCreated() { | public function getDateCreated() { | ||||
| return $this->getStorageObject()->getDateCreated(); | return $this->getStorageObject()->getDateCreated(); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 100 Lines • Show Last 20 Lines | |||||