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

Fix `@extends` for `PhabricatorAuthTemporaryTokenQuery`

Summary:
D26185 added an `@extends` doc comment to
@{class:PhabricatorAuthTemporaryTokenQuery}, however I made a mistake and stuck
the wrong type in the signature which @aklapper caught and I misread.

Test Plan:
Look more closely at the inferred type this time.
See this helpful screenshot: {F5997242}

Reviewers: aklapper, O1 Blessed Committers

Reviewed By: aklapper, O1 Blessed Committers

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, aklapper, Cigaryno

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

amy bones 9c9cfd09 bd8a0e7c

+1 -1
+1 -1
src/applications/auth/query/PhabricatorAuthTemporaryTokenQuery.php
··· 1 1 <?php 2 2 3 3 /** 4 - * @extends PhabricatorCursorPagedPolicyAwareQuery<PhabricatorAuthTemporaryTokenType> 4 + * @extends PhabricatorCursorPagedPolicyAwareQuery<PhabricatorAuthTemporaryToken> 5 5 */ 6 6 final class PhabricatorAuthTemporaryTokenQuery 7 7 extends PhabricatorCursorPagedPolicyAwareQuery {