@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class PhabricatorRepositoryParsedChange extends Phobject {
4
5 private $pathID;
6 private $targetPathID;
7 private $targetCommitID;
8 private $changeType;
9 private $fileType;
10 private $isDirect;
11 private $commitSequence;
12
13 public function setPathID($path_id) {
14 $this->pathID = $path_id;
15 return $this;
16 }
17
18 public function getPathID() {
19 return $this->pathID;
20 }
21
22 public function setCommitSequence($commit_sequence) {
23 $this->commitSequence = $commit_sequence;
24 return $this;
25 }
26
27 public function getCommitSequence() {
28 return $this->commitSequence;
29 }
30
31 public function setIsDirect($is_direct) {
32 $this->isDirect = $is_direct;
33 return $this;
34 }
35
36 public function getIsDirect() {
37 return $this->isDirect;
38 }
39
40 public function setFileType($file_type) {
41 $this->fileType = $file_type;
42 return $this;
43 }
44
45 public function getFileType() {
46 return $this->fileType;
47 }
48
49 public function setChangeType($change_type) {
50 $this->changeType = $change_type;
51 return $this;
52 }
53
54 public function getChangeType() {
55 return $this->changeType;
56 }
57
58 public function setTargetCommitID($target_commit_id) {
59 $this->targetCommitID = $target_commit_id;
60 return $this;
61 }
62
63 public function getTargetCommitID() {
64 return $this->targetCommitID;
65 }
66
67
68 public function setTargetPathID($target_path_id) {
69 $this->targetPathID = $target_path_id;
70 return $this;
71 }
72
73 public function getTargetPathID() {
74 return $this->targetPathID;
75 }
76
77}