Differential D17207 Diff 41374 src/applications/differential/customfield/DifferentialCoreCustomField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialCoreCustomField.php
| Show First 20 Lines • Show All 150 Lines • ▼ Show 20 Lines | public function setValue($value) { | ||||
| $this->value = $value; | $this->value = $value; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getValue() { | public function getValue() { | ||||
| return $this->value; | return $this->value; | ||||
| } | } | ||||
| public function readValueFromCommitMessage($value) { | |||||
| $this->setValue($value); | |||||
| return $this; | |||||
| } | |||||
| public function renderCommitMessageValue(array $handles) { | |||||
| return $this->getValue(); | |||||
| } | |||||
| public function getConduitDictionaryValue() { | public function getConduitDictionaryValue() { | ||||
| return $this->getValue(); | return $this->getValue(); | ||||
| } | } | ||||
| } | } | ||||