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