Thruway\Authentication\AuthenticationDetails::jsonSerialize PHP Метод

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

(PHP 5 >= 5.4.0)
Specify data which should be serialized to JSON
public jsonSerialize ( ) : mixed
Результат mixed data which can be serialized by json_encode, which is a value of any type other than a resource.
    function jsonSerialize()
    {
        return ["authid" => $this->authId, "auth_method" => $this->authMethod, "auth_roles" => $this->authRoles];
    }