Differential D17067 Diff 41083 src/applications/differential/field/DifferentialSummaryCommitMessageField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/field/DifferentialSummaryCommitMessageField.php
| Show All 11 Lines | final class DifferentialSummaryCommitMessageField | ||||
| public function getFieldOrder() { | public function getFieldOrder() { | ||||
| return 2000; | return 2000; | ||||
| } | } | ||||
| public function readFieldValueFromObject(DifferentialRevision $revision) { | public function readFieldValueFromObject(DifferentialRevision $revision) { | ||||
| return $revision->getSummary(); | return $revision->getSummary(); | ||||
| } | } | ||||
| public function getFieldTransactions($value) { | |||||
| return array( | |||||
| array( | |||||
| 'type' => DifferentialRevisionSummaryTransaction::EDITKEY, | |||||
| 'value' => $value, | |||||
| ), | |||||
| ); | |||||
| } | |||||
| } | } | ||||