Changeset View
Changeset View
Standalone View
Standalone View
src/differential/ArcanistDifferentialCommitMessage.php
| Show All 32 Lines | final class ArcanistDifferentialCommitMessage extends Phobject { | ||||
| public function getRawCorpus() { | public function getRawCorpus() { | ||||
| return $this->rawCorpus; | return $this->rawCorpus; | ||||
| } | } | ||||
| public function getRevisionID() { | public function getRevisionID() { | ||||
| return $this->revisionID; | return $this->revisionID; | ||||
| } | } | ||||
| public function getRevisionMonogram() { | |||||
| if ($this->revisionID) { | |||||
| return 'D'.$this->revisionID; | |||||
| } | |||||
| return null; | |||||
| } | |||||
| public function pullDataFromConduit( | public function pullDataFromConduit( | ||||
| ConduitClient $conduit, | ConduitClient $conduit, | ||||
| $partial = false) { | $partial = false) { | ||||
| $result = $conduit->callMethodSynchronous( | $result = $conduit->callMethodSynchronous( | ||||
| 'differential.parsecommitmessage', | 'differential.parsecommitmessage', | ||||
| array( | array( | ||||
| 'corpus' => $this->rawCorpus, | 'corpus' => $this->rawCorpus, | ||||
| ▲ Show 20 Lines • Show All 94 Lines • Show Last 20 Lines | |||||