Have following CF:
create column family gr_ip2
with column_type = 'Standard' and comparator = 'TimeUUIDType(reversed=true)' ...;
then do following code:
$uuid1 = phpcassa\UUID::uuid1(null, $time);
$cf->insert("$key" , array($uuid1 => $url) );
it works without exceptions, but CF at the end is empty.