Skip to content
Snippets Groups Projects

[Sprint/JollyJellyfish](feat): Added plus tiers to endpoint and passed through #578

Closed Ben requested to merge feat/plus-tiers-578 into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -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;
Loading