File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,9 @@ public function __sleep(): array
98
98
throw new \BadMethodCallException ('Cannot serialize ' .__CLASS__ );
99
99
}
100
100
101
+ /**
102
+ * @return void
103
+ */
101
104
public function __wakeup ()
102
105
{
103
106
throw new \BadMethodCallException ('Cannot unserialize ' .__CLASS__ );
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ public function __sleep(): array
251
251
throw new \BadMethodCallException ('Cannot serialize ' .__CLASS__ );
252
252
}
253
253
254
- public function __wakeup ()
254
+ public function __wakeup (): void
255
255
{
256
256
throw new \BadMethodCallException ('Cannot unserialize ' .__CLASS__ );
257
257
}
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ public function __sleep(): array
144
144
throw new \BadMethodCallException ('Cannot serialize ' .__CLASS__ );
145
145
}
146
146
147
- public function __wakeup ()
147
+ public function __wakeup (): void
148
148
{
149
149
throw new \BadMethodCallException ('Cannot unserialize ' .__CLASS__ );
150
150
}
Original file line number Diff line number Diff line change @@ -122,6 +122,9 @@ public function __sleep(): array
122
122
throw new \BadMethodCallException ('Cannot serialize ' .__CLASS__ );
123
123
}
124
124
125
+ /**
126
+ * @return void
127
+ */
125
128
public function __wakeup ()
126
129
{
127
130
throw new \BadMethodCallException ('Cannot unserialize ' .__CLASS__ );
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public function __sleep(): array
49
49
throw new \BadMethodCallException ('Cannot serialize ' .__CLASS__ );
50
50
}
51
51
52
- public function __wakeup ()
52
+ public function __wakeup (): void
53
53
{
54
54
throw new \BadMethodCallException ('Cannot unserialize ' .__CLASS__ );
55
55
}
You can’t perform that action at this time.
0 commit comments