We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc5ff9 commit d836647Copy full SHA for d836647
app/code/core/Mage/Core/Model/Session.php
@@ -24,7 +24,6 @@
24
* @method $this setCurrencyCode(string $value)
25
* @method $this setFormData(array $value)
26
* @method int getJustVotedPoll()
27
- * @method array getOrderIds()
28
* @method $this setOrderIds(array $value)
29
* @method $this setJustVotedPoll(int $value)
30
* @method $this setLastUrl(string $value)
@@ -71,4 +70,9 @@ public function validateFormKey($formKey)
71
70
{
72
return ($formKey === $this->getFormKey());
73
}
+
74
+ public function getOrderIds(bool $clear = false): array
75
+ {
76
+ return $this->getData('order_ids', $clear) ?? [];
77
+ }
78
0 commit comments