Skip to content

Commit

Permalink
Merge branch 'main' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Sep 4, 2023
2 parents bfd49a9 + 8558c35 commit 6e42c67
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 337 deletions.
4 changes: 2 additions & 2 deletions app/Mage.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public static function getOpenMageVersionInfo(): array
return [
'major' => '20',
'minor' => '1',
'patch' => '0',
'patch' => '1',
'stability' => '', // beta,alpha,rc
'number' => '', // 1,2,3,0.3.7,x.7.z.92 @see https://semver.org/#spec-item-9
];
Expand All @@ -225,7 +225,7 @@ public static function getOpenMageVersionInfo(): array
return [
'major' => '19',
'minor' => '5',
'patch' => '0',
'patch' => '1',
'stability' => '', // beta,alpha,rc
'number' => '', // 1,2,3,0.3.7,x.7.z.92 @see https://semver.org/#spec-item-9
];
Expand Down
4 changes: 2 additions & 2 deletions app/code/core/Mage/Sales/Model/Quote.php
Original file line number Diff line number Diff line change
Expand Up @@ -2096,10 +2096,10 @@ public function getCouponCode(): string
}

/**
* @param string $couponCode
* @param string|null $couponCode
* @return $this
*/
public function setCouponCode(string $couponCode)
public function setCouponCode(?string $couponCode)
{
return $this->setData('coupon_code', $couponCode);
}
Expand Down
Loading

0 comments on commit 6e42c67

Please sign in to comment.