diff --git a/src/Faker/Provider/Uuid.php b/src/Faker/Provider/Uuid.php index d96f40f2..764152fe 100644 --- a/src/Faker/Provider/Uuid.php +++ b/src/Faker/Provider/Uuid.php @@ -23,7 +23,7 @@ class Uuid extends \Faker\Provider\Base $csLo = $byte[9]; $csHi = $byte[8] & 0x3f | (1 << 7); - // if needed to make it big endian + // correct byte order for big edian architecture if (pack('L', 0x6162797A) == pack('N', 0x6162797A)) { $tLo = (($tLo & 0x000000ff) << 24) | (($tLo & 0x0000ff00) << 8) | (($tLo & 0x00ff0000) >> 8) | (($tLo & 0xff000000) >> 24);