Differential D9986 Diff 24115 src/applications/differential/customfield/DifferentialManiphestTasksField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/differential/customfield/DifferentialManiphestTasksField.php
| Show First 20 Lines • Show All 85 Lines • ▼ Show 20 Lines | return array( | ||||
| 'Maniphest Tasks', | 'Maniphest Tasks', | ||||
| ); | ); | ||||
| } | } | ||||
| public function parseValueFromCommitMessage($value) { | public function parseValueFromCommitMessage($value) { | ||||
| return $this->parseObjectList( | return $this->parseObjectList( | ||||
| $value, | $value, | ||||
| array( | array( | ||||
| ManiphestPHIDTypeTask::TYPECONST, | ManiphestTaskPHIDType::TYPECONST, | ||||
| )); | )); | ||||
| } | } | ||||
| public function getRequiredHandlePHIDsForCommitMessage() { | public function getRequiredHandlePHIDsForCommitMessage() { | ||||
| return $this->getRequiredHandlePHIDsForPropertyView(); | return $this->getRequiredHandlePHIDsForPropertyView(); | ||||
| } | } | ||||
| public function renderCommitMessageValue(array $handles) { | public function renderCommitMessageValue(array $handles) { | ||||
| Show All 12 Lines | |||||