Skip to content

Commit 24695ff

Browse files
committed
PHP 8.2 Fixes not braking older versions of PHP
1 parent ca9780e commit 24695ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Webpatser/Uuid/Uuid.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ class Uuid
114114
*/
115115
const VALID_UUID_REGEX = '^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$';
116116

117-
protected string $bytes;
118-
protected string $string;
119-
protected string $uuid_ordered;
117+
protected $bytes;
118+
protected $string;
119+
protected $uuid_ordered;
120120

121121
/**
122122
* @param string $uuid

0 commit comments

Comments
 (0)