Differential D17067 Diff 41083 src/applications/differential/field/DifferentialTestPlanCommitMessageField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/field/DifferentialTestPlanCommitMessageField.php
| Show All 35 Lines | if ($is_required && !strlen($value)) { | ||||
| 'to verify the behavior of this change.')); | 'to verify the behavior of this change.')); | ||||
| } | } | ||||
| } | } | ||||
| public function readFieldValueFromObject(DifferentialRevision $revision) { | public function readFieldValueFromObject(DifferentialRevision $revision) { | ||||
| return $revision->getTestPlan(); | return $revision->getTestPlan(); | ||||
| } | } | ||||
| public function getFieldTransactions($value) { | |||||
| return array( | |||||
| array( | |||||
| 'type' => DifferentialRevisionTestPlanTransaction::EDITKEY, | |||||
| 'value' => $value, | |||||
| ), | |||||
| ); | |||||
| } | |||||
| } | } | ||||