From 94a9724637ae17b0fe0d735316d9715b763310cf Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Mon, 12 May 2025 20:39:55 +0200 Subject: [PATCH] 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 --- .../typeahead/datasource/PhabricatorTypeaheadDatasource.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php b/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php index 11c94d1933..f0676425f9 100644 --- a/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php +++ b/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php @@ -135,6 +135,10 @@ abstract class PhabricatorTypeaheadDatasource extends Phobject { abstract public function getDatasourceApplicationClass(); abstract public function loadResults(); + /** + * @param $phase string + * @param $limit int + */ protected function loadResultsForPhase($phase, $limit) { // By default, sources just load all of their results in every phase and // rely on filtering at a higher level to sequence phases correctly.