Reformat various code.

This commit is contained in:
James Cole
2022-03-29 14:58:06 +02:00
parent 1209c4e76a
commit 29bed2547c
140 changed files with 1004 additions and 1010 deletions

View File

@@ -38,7 +38,7 @@ class UserChangedEmail extends Event
public string $newEmail;
public string $oldEmail;
public User $user;
public User $user;
/**
* UserChangedEmail constructor.
@@ -49,8 +49,8 @@ class UserChangedEmail extends Event
*/
public function __construct(User $user, string $newEmail, string $oldEmail)
{
$this->user = $user;
$this->oldEmail = $oldEmail;
$this->newEmail = $newEmail;
$this->user = $user;
$this->oldEmail = $oldEmail;
$this->newEmail = $newEmail;
}
}