From c867f0acc65f43d360acbfeee22332e41d2d0784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maurice=20Preu=C3=9F?= Date: Tue, 17 Jun 2025 09:46:29 +0200 Subject: [PATCH] Aktualisieren von Account.php --- src/Data/Account.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/Data/Account.php b/src/Data/Account.php index e12748f..1682294 100644 --- a/src/Data/Account.php +++ b/src/Data/Account.php @@ -4,12 +4,6 @@ namespace Afosto\Acme\Data; class Account { - - /** - * @var array - */ - protected $contact; - /** * @var string */ @@ -34,12 +28,10 @@ class Account * @param string $accountURL */ public function __construct( - array $contact, \DateTime $createdAt, bool $isValid, string $accountURL ) { - $this->contact = $contact; $this->createdAt = $createdAt; $this->isValid = $isValid; $this->accountURL = $accountURL; @@ -72,15 +64,6 @@ class Account return $this->accountURL; } - /** - * Return contact data - * @return array - */ - public function getContact(): array - { - return $this->contact; - } - /** * Returns validation status * @return bool