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);
    }