From c7b8291ce758945c41e254ba0852cd105e620813 Mon Sep 17 00:00:00 2001 From: Patrick Date: Mon, 18 Jan 2021 21:39:38 +0100 Subject: [PATCH] Update CanBeBought.php Add missing bracket --- src/CanBeBought.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CanBeBought.php b/src/CanBeBought.php index d553c3f..949c3a6 100644 --- a/src/CanBeBought.php +++ b/src/CanBeBought.php @@ -29,7 +29,7 @@ trait CanBeBought return $ttle; } - if (($description = $this->getAttribute('description')) { + if (($description = $this->getAttribute('description'))) { return $description; } }