Random: remove multiline formatting in nextSignedInt()

I'm sick to death of formatting tools messing with this...
This commit is contained in:
Dylan K. Taylor 2020-05-20 14:34:29 +01:00
parent 80b804f7aa
commit ff3af492f8

View File

@ -94,8 +94,7 @@ class Random{
$this->x = $this->y;
$this->y = $this->z;
$this->z = $this->w;
$this->w = ($this->w ^ (($this->w >> 19) & 0x7fffffff)
^ ($t ^ (($t >> 8) & 0x7fffffff))) & 0xffffffff;
$this->w = ($this->w ^ (($this->w >> 19) & 0x7fffffff) ^ ($t ^ (($t >> 8) & 0x7fffffff))) & 0xffffffff;
return $this->w;
}