change array declarations

This commit is contained in:
Alessandro Minoccheri
2018-09-07 12:18:46 +02:00
committed by Ben Ramsey
parent 2074056769
commit c4cc058f3d
7 changed files with 19 additions and 19 deletions
+2 -2
View File
@@ -96,14 +96,14 @@ class DefaultTimeGenerator implements TimeGeneratorInterface
$hex = vsprintf(
'%08s%04s%04s%02s%02s%012s',
array(
[
$uuidTime['low'],
$uuidTime['mid'],
sprintf('%04x', $timeHi),
sprintf('%02x', $clockSeqHi),
sprintf('%02x', $clockSeq & 0xff),
$node,
)
]
);
return hex2bin($hex);