From 166ad5bf4bc452e5ee0071c5ad28732114dc3390 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 7 Feb 2020 21:05:56 +0100 Subject: [PATCH] fix aligns --- Account/Account.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Account/Account.php b/Account/Account.php index ebaf8f959..a58f19cc9 100644 --- a/Account/Account.php +++ b/Account/Account.php @@ -159,10 +159,10 @@ class Account implements ArrayableInterface, \JsonSerializable */ public function __construct(int $id = 0) { - $this->createdAt = new \DateTime('now'); - $this->lastActive = new \DateTime('now'); - $this->id = $id; - $this->localization = new Localization(); + $this->createdAt = new \DateTime('now'); + $this->lastActive = new \DateTime('now'); + $this->id = $id; + $this->localization = new Localization(); } /**