@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: Correct some param types

Summary: Type in PHPDoc @param versus type in method signature mismatch. Thus correct PHPDoc.

Test Plan: Read the PHPDoc and the signature and compare types.

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

+5 -5
+2 -2
src/applications/auth/engine/PhabricatorAuthSessionEngine.php
··· 304 304 * multifactor authentication. 305 305 * 306 306 * @param PhabricatorUser $user User whose sessions should be terminated. 307 - * @param string|null $except_session (optional) One session to keep. 308 - * Normally, the current login session. 307 + * @param PhutilOpaqueEnvelope|null $except_session (optional) One session to 308 + * keep. Normally, the current login session. 309 309 * 310 310 * @return void 311 311 */
+2 -2
src/applications/base/PhabricatorApplication.php
··· 331 331 * Build items for the main menu. 332 332 * 333 333 * @param PhabricatorUser $user The viewing user. 334 - * @param AphrontController $controller (optional) The current controller. 335 - * May be null for special pages like 404, exception handlers, etc. 334 + * @param PhabricatorController|null $controller (optional) The current 335 + * controller. Null for special pages like 404, exception handlers, etc. 336 336 * @return list<PHUIListItemView> List of menu items. 337 337 * @task ui 338 338 */
+1 -1
src/applications/people/storage/PhabricatorUser.php
··· 803 803 /** 804 804 * Write to the availability cache. 805 805 * 806 - * @param wild $availability Availability cache data. 806 + * @param array $availability Availability cache data. 807 807 * @param int|null $ttl Cache TTL. 808 808 * @return $this 809 809 * @task availability