Update CanBeBought.php

Add missing assignment operator
This commit is contained in:
Patrick
2021-01-18 21:38:28 +01:00
committed by GitHub
parent 963be116b7
commit db5ad0b3e4

View File

@@ -25,7 +25,7 @@ trait CanBeBought
return $name;
}
if (($title $this->getAttribute('title'))) {
if (($title = $this->getAttribute('title'))) {
return $ttle;
}