Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
15
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/CurlException.php
vendored
Normal file
15
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/CurlException.php
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace Safe\Exceptions;
|
||||
|
||||
class CurlException extends \Exception implements SafeExceptionInterface
|
||||
{
|
||||
/**
|
||||
* @param resource $ch
|
||||
*/
|
||||
public static function createFromCurlResource($ch): self
|
||||
{
|
||||
return new self(\curl_error($ch), \curl_errno($ch));
|
||||
}
|
||||
}
|
12
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/JsonException.php
vendored
Normal file
12
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/JsonException.php
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace Safe\Exceptions;
|
||||
|
||||
class JsonException extends \Exception implements SafeExceptionInterface
|
||||
{
|
||||
public static function createFromPhpError(): self
|
||||
{
|
||||
return new self(\json_last_error_msg(), \json_last_error());
|
||||
}
|
||||
}
|
12
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/OpensslException.php
vendored
Normal file
12
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/OpensslException.php
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace Safe\Exceptions;
|
||||
|
||||
class OpensslException extends \Exception implements SafeExceptionInterface
|
||||
{
|
||||
public static function createFromPhpError(): self
|
||||
{
|
||||
return new self(\openssl_error_string() ?: '', 0);
|
||||
}
|
||||
}
|
21
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/PcreException.php
vendored
Normal file
21
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/PcreException.php
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace Safe\Exceptions;
|
||||
|
||||
class PcreException extends \Exception implements SafeExceptionInterface
|
||||
{
|
||||
public static function createFromPhpError(): self
|
||||
{
|
||||
$errorMap = [
|
||||
PREG_INTERNAL_ERROR => 'PREG_INTERNAL_ERROR: Internal error',
|
||||
PREG_BACKTRACK_LIMIT_ERROR => 'PREG_BACKTRACK_LIMIT_ERROR: Backtrack limit reached',
|
||||
PREG_RECURSION_LIMIT_ERROR => 'PREG_RECURSION_LIMIT_ERROR: Recursion limit reached',
|
||||
PREG_BAD_UTF8_ERROR => 'PREG_BAD_UTF8_ERROR: Invalid UTF8 character',
|
||||
PREG_BAD_UTF8_OFFSET_ERROR => 'PREG_BAD_UTF8_OFFSET_ERROR',
|
||||
PREG_JIT_STACKLIMIT_ERROR => 'PREG_JIT_STACKLIMIT_ERROR',
|
||||
];
|
||||
$errMsg = $errorMap[preg_last_error()] ?? 'Unknown PCRE error: '.preg_last_error();
|
||||
return new self($errMsg, \preg_last_error());
|
||||
}
|
||||
}
|
9
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/SafeExceptionInterface.php
vendored
Normal file
9
admin/phpMyAdmin/vendor/thecodingmachine/safe/lib/Exceptions/SafeExceptionInterface.php
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
|
||||
namespace Safe\Exceptions;
|
||||
|
||||
interface SafeExceptionInterface extends \Throwable
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue