mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 07:10:29 -04:00
Type hinting fixes
This commit is contained in:
parent
e98a650f59
commit
ad0badc09e
7 changed files with 15 additions and 15 deletions
|
@ -7,9 +7,9 @@ use Safe\DateTime;
|
|||
*/
|
||||
class NewsletterSubscription extends PropertiesBase{
|
||||
public bool $IsConfirmed = false;
|
||||
public bool $IsSubscribedToSummary;
|
||||
public bool $IsSubscribedToNewsletter;
|
||||
public int $UserId;
|
||||
public bool $IsSubscribedToSummary = false;
|
||||
public bool $IsSubscribedToNewsletter = false;
|
||||
public ?int $UserId = null;
|
||||
public DateTime $Created;
|
||||
protected $_User;
|
||||
protected $_Url = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue