mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 23:00:28 -04:00
Type hinting fixes
This commit is contained in:
parent
e98a650f59
commit
ad0badc09e
7 changed files with 15 additions and 15 deletions
|
@ -10,11 +10,11 @@ use Safe\DateTime;
|
|||
*/
|
||||
class User extends PropertiesBase{
|
||||
public int $UserId;
|
||||
public ?string $Name;
|
||||
public ?string $Email;
|
||||
public ?string $Name = null;
|
||||
public ?string $Email = null;
|
||||
public DateTime $Created;
|
||||
public string $Uuid;
|
||||
public ?string $PasswordHash;
|
||||
public ?string $PasswordHash = null;
|
||||
protected ?bool $_IsRegistered = null;
|
||||
protected $_Payments = null;
|
||||
protected ?Benefits $_Benefits = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue