@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 PhabricatorApplicationTransactionTemplatedCommentQuery
4 extends PhabricatorApplicationTransactionCommentQuery {
5
6 private $template;
7
8 public function setTemplate(
9 PhabricatorApplicationTransactionComment $template) {
10 $this->template = $template;
11 return $this;
12 }
13
14 protected function newApplicationTransactionCommentTemplate() {
15 return id(clone $this->template);
16 }
17
18}