Skip to content

Commit f82715c

Browse files
authored
Merge pull request #77 from srjlewis/master
Fix deprecation notices in PHP 8.2
2 parents df92ebb + 24695ff commit f82715c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Webpatser/Uuid/Uuid.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,11 @@ class Uuid
113113
* Regular expression for validation of 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}$';
116-
116+
117+
protected $bytes;
118+
protected $string;
119+
protected $uuid_ordered;
120+
117121
/**
118122
* @param string $uuid
119123
* @throws Exception

0 commit comments

Comments
 (0)