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 c9a901f commit 2c80954Copy full SHA for 2c80954
app/code/core/Mage/Core/Model/Session.php
@@ -28,7 +28,6 @@
28
* @method $this setCurrencyCode(string $value)
29
* @method $this setFormData(array $value)
30
* @method int getJustVotedPoll()
31
- * @method array getOrderIds()
32
* @method $this setOrderIds(array $value)
33
* @method $this setJustVotedPoll(int $value)
34
* @method $this setLastUrl(string $value)
@@ -75,4 +74,9 @@ public function validateFormKey($formKey)
75
74
{
76
return ($formKey === $this->getFormKey());
77
}
+
78
+ public function getOrderIds(bool $clear = false): array
79
+ {
80
+ return $this->getData('order_ids', $clear) ?? [];
81
+ }
82
0 commit comments