From fb7e4fe6462b2a0492500d91cbdd03fb83b0b1c2 Mon Sep 17 00:00:00 2001 From: Dilo surucu Date: Sat, 3 Feb 2024 03:53:54 -0500 Subject: [PATCH] Unfortunately, I forgot to delete the readonly keyword. --- src/Send.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Send.php b/src/Send.php index b89ecef..e186637 100644 --- a/src/Send.php +++ b/src/Send.php @@ -7,14 +7,14 @@ /** * */ -readonly class Send +class Send { use MacroTrait; /** * @param Broadcast $broadcast */ - public function __construct(private Broadcast $broadcast) + public function __construct(private readonly Broadcast $broadcast) { }