Go\Aop\Framework\BaseInterceptor::serialize PHP Метод

serialize() публичный Метод

Serializes an interceptor into string representation
public serialize ( ) : string
Результат string the string representation of the object or null
    public function serialize()
    {
        $vars = array_filter(get_object_vars($this));
        $vars['adviceMethod'] = static::serializeAdvice($this->adviceMethod);
        return serialize($vars);
    }