<?php

namespace RG\CassandraBundle\Utils;

class TimeUUIDMax extends TimeUUID
{
    public function __construct($time, $timezone = null)
    {
        parent::__construct($time, $timezone);
        $this->setData(array(
            0xFF,
            0xFF,
            0xFF,
            0xFF,
            0xFF,
            0xFF,
            0xFF,
            0xFF
        ));
    }
}