@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
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add two trivial PHPDocs lines to PhabricatorTypeaheadDatasource

Summary: Trivial but as I was looking into this code it cannot hurt I guess...

Test Plan: Manually check classes/types of parameters.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26019

+4
+4
src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php
··· 135 135 abstract public function getDatasourceApplicationClass(); 136 136 abstract public function loadResults(); 137 137 138 + /** 139 + * @param $phase string 140 + * @param $limit int 141 + */ 138 142 protected function loadResultsForPhase($phase, $limit) { 139 143 // By default, sources just load all of their results in every phase and 140 144 // rely on filtering at a higher level to sequence phases correctly.