Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / repository / data / PhabricatorRepositoryParsedChange.php
blob668a2f8c890a3e7c144e38f6f9067b638f8f5553
1 <?php
3 final class PhabricatorRepositoryParsedChange extends Phobject {
5 private $pathID;
6 private $targetPathID;
7 private $targetCommitID;
8 private $changeType;
9 private $fileType;
10 private $isDirect;
11 private $commitSequence;
13 public function setPathID($path_id) {
14 $this->pathID = $path_id;
15 return $this;
18 public function getPathID() {
19 return $this->pathID;
22 public function setCommitSequence($commit_sequence) {
23 $this->commitSequence = $commit_sequence;
24 return $this;
27 public function getCommitSequence() {
28 return $this->commitSequence;
31 public function setIsDirect($is_direct) {
32 $this->isDirect = $is_direct;
33 return $this;
36 public function getIsDirect() {
37 return $this->isDirect;
40 public function setFileType($file_type) {
41 $this->fileType = $file_type;
42 return $this;
45 public function getFileType() {
46 return $this->fileType;
49 public function setChangeType($change_type) {
50 $this->changeType = $change_type;
51 return $this;
54 public function getChangeType() {
55 return $this->changeType;
58 public function setTargetCommitID($target_commit_id) {
59 $this->targetCommitID = $target_commit_id;
60 return $this;
63 public function getTargetCommitID() {
64 return $this->targetCommitID;
68 public function setTargetPathID($target_path_id) {
69 $this->targetPathID = $target_path_id;
70 return $this;
73 public function getTargetPathID() {
74 return $this->targetPathID;