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.
2 parents 63680fa + f930074 commit 065949bCopy full SHA for 065949b
README.md
@@ -12,6 +12,10 @@ Requires the shoppingfeed plugin
12
13
## Changelog
14
15
+### 1.0.5 (8-07-2025)
16
+
17
+* fix: set visibility to public for the __wakeup() method in the ShoppingFeedCustomFields class
18
19
### 1.0.4 (28-08-2023)
20
21
* fix: missing value for select with single value
src/ShoppingFeedCustomFields.php
@@ -96,6 +96,7 @@ private function __clone() {
96
/**
97
* Singleton instance can't be serialized.
98
*/
99
- private function __wakeup() {
+ public function __wakeup() {
100
+ throw new \Exception( 'Cannot unserialize a singleton.' );
101
}
102
0 commit comments