@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 ManiphestCustomField
4 extends PhabricatorCustomField {
5
6 public function newStorageObject() {
7 return new ManiphestCustomFieldStorage();
8 }
9
10 protected function newStringIndexStorage() {
11 return new ManiphestCustomFieldStringIndex();
12 }
13
14 protected function newNumericIndexStorage() {
15 return new ManiphestCustomFieldNumericIndex();
16 }
17
18}