1: <?php 2: namespace phpcassa\Schema\DataType; 3: 4: use phpcassa\Schema\DataType\UUIDType; 5: 6: /** 7: * Stores v1 UUIDs, which have a timestamp component. 8: * 9: * @package phpcassa\Schema\DataType 10: */ 11: class TimeUUIDType extends UUIDType {} 12: