change array declarations

This commit is contained in:
Alessandro Minoccheri
2018-09-07 12:18:46 +02:00
committed by Ben Ramsey
parent 4de1348099
commit b234bec5b9
+2 -2
View File
@@ -44,11 +44,11 @@ class GmpTimeConverter implements TimeConverterInterface
$uuidTimeHex = sprintf('%016s', gmp_strval($uuidTime, 16));
return array(
return [
'low' => substr($uuidTimeHex, 8),
'mid' => substr($uuidTimeHex, 4, 4),
'hi' => substr($uuidTimeHex, 0, 4),
);
];
}
/**