Skip to content

Commit 6e42c67

Browse files
committed
Merge branch 'main' into next
2 parents bfd49a9 + 8558c35 commit 6e42c67

File tree

3 files changed

+85
-337
lines changed

3 files changed

+85
-337
lines changed

app/Mage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public static function getOpenMageVersionInfo(): array
216216
return [
217217
'major' => '20',
218218
'minor' => '1',
219-
'patch' => '0',
219+
'patch' => '1',
220220
'stability' => '', // beta,alpha,rc
221221
'number' => '', // 1,2,3,0.3.7,x.7.z.92 @see https://semver.org/#spec-item-9
222222
];
@@ -225,7 +225,7 @@ public static function getOpenMageVersionInfo(): array
225225
return [
226226
'major' => '19',
227227
'minor' => '5',
228-
'patch' => '0',
228+
'patch' => '1',
229229
'stability' => '', // beta,alpha,rc
230230
'number' => '', // 1,2,3,0.3.7,x.7.z.92 @see https://semver.org/#spec-item-9
231231
];

app/code/core/Mage/Sales/Model/Quote.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2096,10 +2096,10 @@ public function getCouponCode(): string
20962096
}
20972097

20982098
/**
2099-
* @param string $couponCode
2099+
* @param string|null $couponCode
21002100
* @return $this
21012101
*/
2102-
public function setCouponCode(string $couponCode)
2102+
public function setCouponCode(?string $couponCode)
21032103
{
21042104
return $this->setData('coupon_code', $couponCode);
21052105
}

0 commit comments

Comments
 (0)