Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
brick /
math /
src /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
DivisionByZeroException.php
874
B
-rw-r--r--
2020-11-17 16:24
IntegerOverflowException.php
612
B
-rw-r--r--
2020-11-17 16:24
MathException.php
268
B
-rw-r--r--
2020-11-17 16:24
NegativeNumberException.php
248
B
-rw-r--r--
2020-11-17 16:24
NumberFormatException.php
799
B
-rw-r--r--
2020-11-17 16:24
RoundingNecessaryException.php
508
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php declare(strict_types=1); namespace Brick\Math\Exception; use Brick\Math\BigInteger; /** * Exception thrown when an integer overflow occurs. */ class IntegerOverflowException extends MathException { /** * @param BigInteger $value * * @return IntegerOverflowException * * @psalm-pure */ public static function toIntOverflow(BigInteger $value) : IntegerOverflowException { $message = '%s is out of range %d to %d and cannot be represented as an integer.'; return new self(\sprintf($message, (string) $value, PHP_INT_MIN, PHP_INT_MAX)); } }