Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
phpMyAdmin /
vendor /
ramsey /
uuid /
src /
Type /
Delete
Unzip
Name
Size
Permission
Date
Action
Decimal.php
3.16
KB
-rw-rw-rw-
2023-02-07 22:26
Hexadecimal.php
2.64
KB
-rw-rw-rw-
2023-02-07 22:26
Integer.php
3.67
KB
-rw-rw-rw-
2023-02-07 22:26
NumberInterface.php
635
B
-rw-rw-rw-
2023-02-07 22:26
Time.php
3.44
KB
-rw-rw-rw-
2023-02-07 22:26
TypeInterface.php
661
B
-rw-rw-rw-
2023-02-07 22:26
Save
Rename
<?php /** * This file is part of the ramsey/uuid library * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com> * @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Type; /** * NumberInterface ensures consistency in numeric values returned by ramsey/uuid * * @psalm-immutable */ interface NumberInterface extends TypeInterface { /** * Returns true if this number is less than zero */ public function isNegative(): bool; }