Commit bcc90f13 authored by Ben Hayward's avatar Ben Hayward

fixed defaulting setTier

1 merge request!279[Sprint/JollyJellyfish](feat): Added plus tiers to endpoint and passed through #578
Pipeline #72562652 running with stages
......@@ -176,8 +176,8 @@ class Manager
* @param string $tier - the tier
* @return $this
*/
public function setTier($tier = MONTHLY)
{
public function setTier($tier = null) {
$tier ?? static::MONTHLY;
$this->tier = $tier;
return $this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment