OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
ramsey
/
uuid
/
tests
/
static-analysis
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:11 AM
rwxr-xr-x
📄
UuidIsImmutable.php
3.07 KB
08/12/2024 10:34:39 AM
rw-r--r--
📄
UuidIsNeverEmpty.php
942 bytes
08/12/2024 10:34:39 AM
rw-r--r--
📄
ValidUuidIsNonEmpty.php
970 bytes
08/12/2024 10:34:39 AM
rw-r--r--
📄
stubs.php
990 bytes
08/12/2024 10:34:39 AM
rw-r--r--
Editing: stubs.php
Close
<?php /** * Stubs for static analysis * * @codingStandardsIgnoreFile */ if (!defined('UUID_TYPE_DEFAULT')) { define('UUID_TYPE_DEFAULT', 0); } if (!defined('UUID_TYPE_TIME')) { define('UUID_TYPE_TIME', 1); } if (!defined('UUID_TYPE_RANDOM')) { define('UUID_TYPE_RANDOM', 4); } if (!function_exists('uuid_create')) { /** @psalm-suppress all */ function uuid_create(int $uuid_type=UUID_TYPE_DEFAULT): string {} // @phpstan-ignore-line } if (!function_exists('uuid_generate_md5')) { /** @psalm-suppress all */ function uuid_generate_md5(string $uuid_ns, string $name): string {} // @phpstan-ignore-line } if (!function_exists('uuid_generate_sha1')) { /** @psalm-suppress all */ function uuid_generate_sha1(string $uuid_ns, string $name): string {} // @phpstan-ignore-line } if (!function_exists('uuid_parse')) { /** @psalm-suppress all */ function uuid_parse(string $uuid): string {} // @phpstan-ignore-line }