You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/Resource/CreateUser.php
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,6 @@
13
13
publicfunction__construct(
14
14
/** The email address of the user. */
15
15
publicstring$email,
16
-
/** The password to set for the user. Mutually exclusive with `password_hash` and `password_hash_type`. */
17
-
public ?string$password = null,
18
-
/** The hashed password to set for the user. Mutually exclusive with `password`. */
19
-
public ?string$passwordHash = null,
20
-
/** The algorithm originally used to hash the password, used when providing a `password_hash`. */
21
-
public ?CreateUserPasswordHashType$passwordHashType = null,
22
16
/** The first name of the user. */
23
17
public ?string$firstName = null,
24
18
/** The last name of the user. */
@@ -32,36 +26,42 @@ public function __construct(
32
26
public ?array$metadata = null,
33
27
/** The external ID of the user. */
34
28
public ?string$externalId = null,
29
+
/** The password to set for the user. Mutually exclusive with `password_hash` and `password_hash_type`. */
30
+
public ?string$password = null,
31
+
/** The hashed password to set for the user. Required with `password_hash_type`. Mutually exclusive with `password`. */
32
+
public ?string$passwordHash = null,
33
+
/** The algorithm originally used to hash the password, used when providing a `password_hash`. Required with `password_hash`. Mutually exclusive with `password`. */
34
+
public ?CreateUserPasswordHashType$passwordHashType = null,
0 commit comments