@@ -29,27 +29,34 @@ trait EnumSerializableTrait
29
29
abstract public function getValue ();
30
30
31
31
/**
32
- * Serialized the value of the enumeration
33
- * This will be called automatically on `serialize()` if the enumeration implements the `Serializable` interface
34
- * @return string
32
+ * Returns an array of data to be serialized.
33
+ * This magic method will be called by serialize() in PHP >= 7.4
34
+ *
35
+ * @return array
35
36
*/
36
- public function serialize (): string
37
+ public function __serialize (): array
37
38
{
38
- return \serialize ( $ this ->getValue ()) ;
39
+ return [ ' value ' => $ this ->getValue ()] ;
39
40
}
40
41
41
42
/**
42
- * Unserializes a given serialized value and push it into the current instance
43
- * This will be called automatically on `unserialize()` if the enumeration implements the `Serializable` interface
44
- * @param string $serialized
43
+ * Receives an array of data to be unserialized on a new instance without constructor.
44
+ * This magic method will be called in PHP >= 7.4 is the data where serialized with PHP >= 7.4.
45
+ *
46
+ * @throws RuntimeException On missing, unknown or invalid value
47
+ * @throws LogicException On calling this method on an already initialized enumerator
48
+ *
49
+ * @param array $data
45
50
* @return void
46
- * @throws RuntimeException On an unknown or invalid value
47
- * @throws LogicException On changing numeration value by calling this directly
48
51
*/
49
- public function unserialize ( $ serialized ): void
52
+ public function __unserialize ( array $ data ): void
50
53
{
51
- $ value = \unserialize ($ serialized );
52
- $ constants = static ::getConstants ();
54
+ if (!\array_key_exists ('value ' , $ data )) {
55
+ throw new RuntimeException ('Missing array key "value" ' );
56
+ }
57
+
58
+ $ value = $ data ['value ' ];
59
+ $ constants = self ::getConstants ();
53
60
$ name = \array_search ($ value , $ constants , true );
54
61
if ($ name === false ) {
55
62
$ message = \is_scalar ($ value )
@@ -73,4 +80,30 @@ public function unserialize($serialized): void
73
80
};
74
81
$ closure ->bindTo ($ this , Enum::class)();
75
82
}
83
+
84
+ /**
85
+ * Serialize the value of the enumeration
86
+ * This will be called automatically on `serialize()` if the enumeration implements the `Serializable` interface
87
+ *
88
+ * @return string
89
+ * @deprecated Since PHP 7.4
90
+ */
91
+ public function serialize (): string
92
+ {
93
+ return \serialize ($ this ->getValue ());
94
+ }
95
+
96
+ /**
97
+ * Unserializes a given serialized value and push it into the current instance
98
+ * This will be called automatically on `unserialize()` if the enumeration implements the `Serializable` interface
99
+ * @param string $serialized
100
+ * @return void
101
+ * @throws RuntimeException On an unknown or invalid value
102
+ * @throws LogicException On calling this method on an already initialized enumerator
103
+ * @deprecated Since PHP 7.4
104
+ */
105
+ public function unserialize ($ serialized ): void
106
+ {
107
+ $ this ->__unserialize (['value ' => \unserialize ($ serialized )]);
108
+ }
76
109
}
0 commit comments