S
Analyzed about 2 hours ago
The SuperClosure is a wrapper for a regular PHP closure that allows serialization, code retrieval, and easy reflection. PHP closures cannot be serialized by normal means, so the SuperClosure enables serialization by using reflection and tokenizing/parsing to get all the information about the closure
... [More]
it needs to recreate it. This is includes the actual code defining the function and the names and values of any variables in the use statement of the closure. [Less]