Disque\Command\Response\CursorResponse::parse PHP Method

parse() public method

Parse response
public parse ( ) : array
return array Parsed response. Indexed array with `finished', 'nextCursor`, `queues`
    public function parse()
    {
        $nextCursor = (int) $this->body[0];
        return array_merge(['finished' => 0 === $nextCursor, 'nextCursor' => $nextCursor], $this->parseBody((array) $this->body[1]));
    }