Go\Aop\Framework\BaseInterceptor::unserialize PHP Méthode

unserialize() public méthode

Unserialize an interceptor from the string
public unserialize ( string $serialized ) : void
$serialized string The string representation of the object.
Résultat void
    public function unserialize($serialized)
    {
        $vars = unserialize($serialized);
        $vars['adviceMethod'] = static::unserializeAdvice($vars['adviceMethod']);
        foreach ($vars as $key => $value) {
            $this->{$key} = $value;
        }
    }