mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
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
This commit is contained in:
parent
03c9bf575e
commit
d98c47041f
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ final class PhabricatorAuthPasswordException
|
|||
extends Exception {
|
||||
|
||||
private $passwordError;
|
||||
private $confirmErorr;
|
||||
private $confirmError;
|
||||
|
||||
public function __construct(
|
||||
$message,
|
||||
|
|
Loading…
Reference in a new issue