We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d51cbf4 commit 5cbc8f4Copy full SHA for 5cbc8f4
includes/libs/uuid/GlobalIdGenerator.php
@@ -597,7 +597,7 @@ protected function timeWaitUntil( $time ) {
597
* @throws RuntimeException
598
*/
599
protected function millisecondsSinceEpochBinary( array $time ) {
600
- list( $sec, $msec ) = $time;
+ [ $sec, $msec ] = $time;
601
$ts = 1000 * $sec + $msec;
602
if ( $ts > 2 ** 52 ) {
603
throw new RuntimeException( __METHOD__ .
@@ -614,7 +614,7 @@ protected function millisecondsSinceEpochBinary( array $time ) {
614
615
616
protected function intervalsSinceGregorianBinary( array $time, $delta = 0 ) {
617
618
$offset = '122192928000000000';
619
620
// 64 bit integers
0 commit comments