@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
3abstract class DiffusionExternalSymbolsSource extends Phobject {
4
5 /**
6 * @return list of PhabricatorRepositorySymbol
7 */
8 abstract public function executeQuery(DiffusionExternalSymbolQuery $query);
9
10 protected function buildExternalSymbol() {
11 return id(new PhabricatorRepositorySymbol())
12 ->setIsExternal(true)
13 ->makeEphemeral();
14 }
15}