Update to PHP 7.4
This commit is contained in:
parent
36b8cfe8b1
commit
87928dbbc9
16 changed files with 99 additions and 147 deletions
|
|
@ -7,16 +7,11 @@ use DateTimeImmutable;
|
|||
|
||||
class Alias
|
||||
{
|
||||
/** @var int */
|
||||
private $id;
|
||||
/** @var int */
|
||||
private $userId;
|
||||
/** @var string */
|
||||
private $mailAddress;
|
||||
/** @var DateTimeImmutable */
|
||||
private $createdAt;
|
||||
/** @var DateTimeImmutable */
|
||||
private $modifiedAt;
|
||||
private int $id;
|
||||
private int $userId;
|
||||
private string $mailAddress;
|
||||
private DateTimeImmutable $createdAt;
|
||||
private DateTimeImmutable $modifiedAt;
|
||||
|
||||
private function __construct(int $id, int $userId, string $mailAddress, DateTimeImmutable $createdAt, DateTimeImmutable $modifiedAt)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue