@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

PHP 8.2: fix deprecated creation of dynamic properties

Summary:
This change fixes a typo that, in PHP 8.2, causes this exception:

Creation of dynamic property PhabricatorAuthPasswordException::$confirmError is deprecated

Closes T15201

Test Plan: - I checked that "error" was spelled with two "r"

Reviewers: O1 Blessed Committers, avivey

Reviewed By: O1 Blessed Committers, avivey

Subscribers: speck, tobiaswiese, Matthew, Cigaryno

Maniphest Tasks: T15201

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

+1 -1
+1 -1
src/applications/auth/password/PhabricatorAuthPasswordException.php
··· 4 4 extends Exception { 5 5 6 6 private $passwordError; 7 - private $confirmErorr; 7 + private $confirmError; 8 8 9 9 public function __construct( 10 10 $message,