From b80db846ecdc83b2e22af2a288d62e8a1f6b75fd Mon Sep 17 00:00:00 2001 From: Pablo Sanches Date: Wed, 29 Nov 2023 09:54:18 -0300 Subject: [PATCH] Update Command.php --- src/Command.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command.php b/src/Command.php index 9889394..6a89991 100644 --- a/src/Command.php +++ b/src/Command.php @@ -5,7 +5,7 @@ use JsonException; use PabloSanches\RegistroBR\Exception\RegistroBRException; -readonly class Command implements CommandInterface +class Command implements CommandInterface { public function __construct( private EppClient $eppClient, @@ -25,4 +25,4 @@ public function execute(): ?string { return $this->eppClient->executeCommand($this->template->xml()); } -} \ No newline at end of file +}