Skip to content

Commit

Permalink
Update GUIDv4.php (#124)
Browse files Browse the repository at this point in the history
* Update GUIDv4.php

* Update GUIDv4Test.php
  • Loading branch information
guibranco authored Apr 21, 2024
1 parent 5914de2 commit 6121ac6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/GUIDv4.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class GUIDv4
{
private const EMPTY = '00000000-0000-0000-8000-000000000000';
private const EMPTY = '00000000-0000-0000-0000-000000000000';

public static function empty(): string
{
Expand Down
2 changes: 1 addition & 1 deletion tests/GUIDv4Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ final class GUIDv4Test extends TestCase
{
public function testCanBeEmptyGUID(): void
{
$this->assertSame('00000000-0000-0000-8000-000000000000', GUIDv4::empty());
$this->assertSame('00000000-0000-0000-0000-000000000000', GUIDv4::empty());
}

public function testCanBeRandomGUID(): void
Expand Down

0 comments on commit 6121ac6

Please sign in to comment.