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 /
3 /
spatie /
image /
src /
Exceptions /
Delete
Unzip
Name
Size
Permission
Date
Action
CouldNotConvert.php
284
B
-rw-r--r--
2021-04-07 09:00
InvalidImageDriver.php
258
B
-rw-r--r--
2021-04-07 09:00
InvalidManipulation.php
1.17
KB
-rw-r--r--
2021-04-07 09:00
InvalidTemporaryDirectory.php
494
B
-rw-r--r--
2021-04-07 09:00
Save
Rename
<?php namespace Spatie\Image\Exceptions; use Exception; class InvalidManipulation extends Exception { public static function invalidWidth(int $width) { return new self("Width should be a positive number. `{$width}` given."); } public static function invalidHeight(int $height) { return new self("Height should be a positive number. `{$height}` given."); } public static function invalidParameter(string $name, $invalidValue, array $validValues) { $validValues = self::formatValues($validValues); $name = ucfirst($name); return new self("{$name} should be one of {$validValues}. `{$invalidValue}` given."); } public static function valueNotInRange(string $name, $invalidValue, $minValue, $maxValue) { $name = ucfirst($name); return new self("{$name} should be a number in the range {$minValue} until {$maxValue}. `{$invalidValue}` given."); } protected static function formatValues(array $values): string { $quotedValues = array_map(function (string $value) { return "`{$value}`"; }, $values); return implode(', ', $quotedValues); } }