Commit bcc90f13 authored by Ben's avatar Ben
Browse files

fixed defaulting setTier

parent 56d97028
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;