/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Queue
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Queue/SerializableClosure.php (954B)
$value) {
$data[$key] = $this->getSerializedPropertyValue($value);
}
return $data;
}
/**
* Resolve the use variables after unserialization.
*
* @param array $data The Closure's transformed use variables
* @return array
*/
protected function resolveUseVariables($data)
{
foreach ($data as $key => $value) {
$data[$key] = $this->getRestoredPropertyValue($value);
}
return $data;
}
}