Remove all the {{{ and }}} folding

This commit is contained in:
2022-11-25 20:34:27 +01:00
parent b723f47a44
commit 2d6df0d5f0
35 changed files with 0 additions and 1124 deletions

View File

@@ -16,7 +16,6 @@ class Uuid
* @return string UUID created
*/
public static function uuid4 ()
// {{{
{
return sprintf ('%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
@@ -39,5 +38,4 @@ class Uuid
mt_rand (0, 0xffff), mt_rand (0, 0xffff), mt_rand (0, 0xffff)
);
}
// }}}
}