mirror of
https://github.com/standardebooks/web.git
synced 2025-07-09 16:20:27 -04:00
Continue improving type hints
This commit is contained in:
parent
eb376c87bd
commit
703e1a7a03
73 changed files with 98 additions and 114 deletions
|
@ -2,9 +2,6 @@
|
|||
use PHPMailer\PHPMailer\PHPMailer;
|
||||
use PHPMailer\PHPMailer\Exception;
|
||||
|
||||
/**
|
||||
* @property array<array<string>> $Attachments
|
||||
*/
|
||||
class Email{
|
||||
public string $To = '';
|
||||
public string $ToName = '';
|
||||
|
@ -14,6 +11,7 @@ class Email{
|
|||
public string $Subject = '';
|
||||
public string $Body = '';
|
||||
public string $TextBody = '';
|
||||
/** @var array<array<string>> $Attachments */
|
||||
public $Attachments = [];
|
||||
public ?string $PostmarkStream = null;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue