Skip to content

Commit

Permalink
quick minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymiller committed Jul 12, 2020
1 parent 9153499 commit 8884c3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Common/Uuid/UuidRegistry.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public static function uuidToBytes($uuidString)
*/
public static function isValidStringUUID($uuidString)
{
return (UUID::isValid($uuidString));
return (Uuid::isValid($uuidString));
}

/**
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
// is a database change in the course of development. It is used
// internally to determine when a database upgrade is needed.
//
$v_database = 338;
$v_database = 339;

// Access control version identifier, this is to be incremented whenever there
// is a access control change in the course of development. It is used
Expand Down

0 comments on commit 8884c3f

Please sign in to comment.