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 00634ee commit 3253157Copy full SHA for 3253157
src/AsyncTask.php
@@ -103,18 +103,18 @@ public function __serialize(): array
103
{
104
// serialize only the necessary info to reduce runner cmd length
105
return [
106
- 'theTask' => serialize($this->theTask),
+ 'theTask' => $this->theTask,
107
'timeLimit' => $this->timeLimit,
108
];
109
}
110
111
public function __unserialize($data): void
112
113
[
114
- 'theTask' => $tempTask,
115
116
] = $data;
117
- $this->theTask = unserialize($tempTask);
+ // $this->theTask = unserialize($tempTask);
118
119
120
/**
0 commit comments