Changeset View
Changeset View
Standalone View
Standalone View
src/infrastructure/diff/viewstate/PhabricatorChangesetViewState.php
| <?php | <?php | ||||
| final class PhabricatorChangesetViewState | final class PhabricatorChangesetViewState | ||||
| extends Phobject { | extends Phobject { | ||||
| private $highlightLanguage; | private $highlightLanguage; | ||||
| private $characterEncoding; | private $characterEncoding; | ||||
| private $documentEngineKey; | private $documentEngineKey; | ||||
| private $rendererKey; | private $rendererKey; | ||||
| private $defaultDeviceRendererKey; | private $defaultDeviceRendererKey; | ||||
| private $hidden; | |||||
| private $modifiedSinceHide; | |||||
| private $discardResponse; | |||||
| public function setHighlightLanguage($highlight_language) { | public function setHighlightLanguage($highlight_language) { | ||||
| $this->highlightLanguage = $highlight_language; | $this->highlightLanguage = $highlight_language; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getHighlightLanguage() { | public function getHighlightLanguage() { | ||||
| return $this->highlightLanguage; | return $this->highlightLanguage; | ||||
| Show All 30 Lines | public function setDefaultDeviceRendererKey($renderer_key) { | ||||
| $this->defaultDeviceRendererKey = $renderer_key; | $this->defaultDeviceRendererKey = $renderer_key; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getDefaultDeviceRendererKey() { | public function getDefaultDeviceRendererKey() { | ||||
| return $this->defaultDeviceRendererKey; | return $this->defaultDeviceRendererKey; | ||||
| } | } | ||||
| public function setHidden($hidden) { | |||||
| $this->hidden = $hidden; | |||||
| return $this; | |||||
| } | |||||
| public function getHidden() { | |||||
| return $this->hidden; | |||||
| } | |||||
| public function setModifiedSinceHide($modified_since_hide) { | |||||
| $this->modifiedSinceHide = $modified_since_hide; | |||||
| return $this; | |||||
| } | |||||
| public function getModifiedSinceHide() { | |||||
| return $this->modifiedSinceHide; | |||||
| } | |||||
| public function setDiscardResponse($discard_response) { | |||||
| $this->discardResponse = $discard_response; | |||||
| return $this; | |||||
| } | |||||
| public function getDiscardResponse() { | |||||
| return $this->discardResponse; | |||||
| } | |||||
| } | } | ||||