@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
3/**
4 * @template R of PhabricatorPolicyInterface
5 * @extends PhabricatorCursorPagedPolicyAwareQuery<R>
6 */
7abstract class DrydockQuery extends PhabricatorCursorPagedPolicyAwareQuery {
8
9 public function getQueryApplicationClass() {
10 return PhabricatorDrydockApplication::class;
11 }
12
13}