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

phpDoc PhabricatorApplicationQuery

Summary:
Add the necessary phpDoc so `execute` and `executeOne` return at least
something useful.

Test Plan: Look at the inferred return type.

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/D26038

+6
+6
src/applications/meta/query/PhabricatorApplicationQuery.php
··· 1 1 <?php 2 2 3 + /** 4 + * @extends PhabricatorCursorPagedPolicyAwareQuery<PhabricatorApplication> 5 + */ 3 6 final class PhabricatorApplicationQuery 4 7 extends PhabricatorCursorPagedPolicyAwareQuery { 5 8 ··· 53 56 return $this; 54 57 } 55 58 59 + /** 60 + * @param array<class-string<PhabricatorApplication>> $classes 61 + */ 56 62 public function withClasses(array $classes) { 57 63 $this->classes = $classes; 58 64 return $this;