Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/diff/interface/PhabricatorInlineComment.php
| Show First 20 Lines • Show All 216 Lines • ▼ Show 20 Lines | public function setDocumentEngineKey($engine_key) { | ||||
| $this->getStorageObject()->setAttribute('documentEngineKey', $engine_key); | $this->getStorageObject()->setAttribute('documentEngineKey', $engine_key); | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getDocumentEngineKey() { | public function getDocumentEngineKey() { | ||||
| return $this->getStorageObject()->getAttribute('documentEngineKey'); | return $this->getStorageObject()->getAttribute('documentEngineKey'); | ||||
| } | } | ||||
| public function setStartOffset($offset) { | |||||
| $this->getStorageObject()->setAttribute('startOffset', $offset); | |||||
| return $this; | |||||
| } | |||||
| public function getStartOffset() { | |||||
| return $this->getStorageObject()->getAttribute('startOffset'); | |||||
| } | |||||
| public function setEndOffset($offset) { | |||||
| $this->getStorageObject()->setAttribute('endOffset', $offset); | |||||
| return $this; | |||||
| } | |||||
| public function getEndOffset() { | |||||
| return $this->getStorageObject()->getAttribute('endOffset'); | |||||
| } | |||||
| 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 | |||||