Select the types of activity you want to include in your feed.
@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
···8383 return $this->commitIdentifier;
8484 }
85858686+ final public function setTargetCommitIdentifier($target_commit_identifier) {
8787+ $this->targetCommitIdentifier = $target_commit_identifier;
8888+ return $this;
8989+ }
9090+9191+ final public function getTargetCommitIdentifier() {
9292+ return $this->targetCommitIdentifier;
9393+ }
9494+8695 final public function setCommit($commit) {
8796 $this->commit = $commit;
8897 return $this;
···2323 private $fileType;
2424 private $fileSize;
25252626+ private $lastModifiedCommit;
2727+ private $lastCommitData;
2828+2629 final public function setPath($path) {
2730 $this->path = $path;
2831 return $this;
···39424043 final public function getHash() {
4144 return $this->hash;
4545+ }
4646+4747+ final public function setLastModifiedCommit(
4848+ PhabricatorRepositoryCommit $commit) {
4949+ $this->lastModifiedCommit = $commit;
5050+ return $this;
5151+ }
5252+5353+ final public function getLastModifiedCommit() {
5454+ return $this->lastModifiedCommit;
5555+ }
5656+5757+ final public function setLastCommitData(
5858+ PhabricatorRepositoryCommitData $last_commit_data) {
5959+ $this->lastCommitData = $last_commit_data;
6060+ return $this;
6161+ }
6262+6363+ final public function getLastCommitData() {
6464+ return $this->lastCommitData;
4265 }
43664467 final public function setFileType($file_type) {