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 : 3.21.76.7
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
doctrine /
dbal /
src /
Types /
Delete
Unzip
Name
Size
Permission
Date
Action
ArrayType.php
2.05
KB
-rw-rw-r--
2022-08-21 14:21
AsciiStringType.php
582
B
-rw-rw-r--
2022-08-21 14:21
BigIntType.php
857
B
-rw-rw-r--
2022-08-21 14:21
BinaryType.php
1.32
KB
-rw-rw-r--
2022-08-21 14:21
BlobType.php
1.3
KB
-rw-rw-r--
2022-08-21 14:21
BooleanType.php
1.62
KB
-rw-rw-r--
2022-08-21 14:21
ConversionException.php
3.6
KB
-rw-rw-r--
2022-08-21 14:21
DateImmutableType.php
1.78
KB
-rw-rw-r--
2022-08-21 14:21
DateIntervalType.php
2.2
KB
-rw-rw-r--
2022-08-21 14:21
DateTimeImmutableType.php
1.94
KB
-rw-rw-r--
2022-08-21 14:21
DateTimeType.php
1.67
KB
-rw-rw-r--
2022-08-21 14:21
DateTimeTzImmutableType.php
1.82
KB
-rw-rw-r--
2022-08-21 14:21
DateTimeTzType.php
2.42
KB
-rw-rw-r--
2022-08-21 14:21
DateType.php
1.5
KB
-rw-rw-r--
2022-08-21 14:21
DecimalType.php
976
B
-rw-rw-r--
2022-08-21 14:21
FloatType.php
597
B
-rw-rw-r--
2022-08-21 14:21
GuidType.php
952
B
-rw-rw-r--
2022-08-21 14:21
IntegerType.php
852
B
-rw-rw-r--
2022-08-21 14:21
JsonType.php
2.04
KB
-rw-rw-r--
2022-08-21 14:21
ObjectType.php
1.81
KB
-rw-rw-r--
2022-08-21 14:21
PhpDateTimeMappingType.php
183
B
-rw-rw-r--
2022-08-21 14:21
PhpIntegerMappingType.php
163
B
-rw-rw-r--
2022-08-21 14:21
SimpleArrayType.php
1.65
KB
-rw-rw-r--
2022-08-21 14:21
SmallIntType.php
864
B
-rw-rw-r--
2022-08-21 14:21
StringType.php
482
B
-rw-rw-r--
2022-08-21 14:21
TextType.php
733
B
-rw-rw-r--
2022-08-21 14:21
TimeImmutableType.php
1.78
KB
-rw-rw-r--
2022-08-21 14:21
TimeType.php
1.5
KB
-rw-rw-r--
2022-08-21 14:21
Type.php
8.34
KB
-rw-rw-r--
2022-08-21 14:21
TypeRegistry.php
2.78
KB
-rw-rw-r--
2022-08-21 14:21
Types.php
1.58
KB
-rw-rw-r--
2022-08-21 14:21
VarDateTimeImmutableType.php
1.69
KB
-rw-rw-r--
2022-08-21 14:21
VarDateTimeType.php
901
B
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php namespace Doctrine\DBAL\Types; use Doctrine\DBAL\Exception; use Throwable; use function func_get_arg; use function func_num_args; use function get_class; use function gettype; use function implode; use function is_object; use function is_scalar; use function sprintf; use function strlen; use function substr; use function var_export; /** * Conversion Exception is thrown when the database to PHP conversion fails. * * @psalm-immutable */ class ConversionException extends Exception { /** * Thrown when a Database to Doctrine Type Conversion fails. * * @param mixed $value * @param string $toType * * @return ConversionException */ public static function conversionFailed($value, $toType, ?Throwable $previous = null) { $value = strlen($value) > 32 ? substr($value, 0, 20) . '...' : $value; return new self('Could not convert database value "' . $value . '" to Doctrine Type ' . $toType, 0, $previous); } /** * Thrown when a Database to Doctrine Type Conversion fails and we can make a statement * about the expected format. * * @param mixed $value * @param string $toType * @param string $expectedFormat * * @return ConversionException */ public static function conversionFailedFormat($value, $toType, $expectedFormat, ?Throwable $previous = null) { $value = strlen($value) > 32 ? substr($value, 0, 20) . '...' : $value; return new self( 'Could not convert database value "' . $value . '" to Doctrine Type ' . $toType . '. Expected format: ' . $expectedFormat, 0, $previous ); } /** * Thrown when the PHP value passed to the converter was not of the expected type. * * @param mixed $value * @param string $toType * @param string[] $possibleTypes * * @return ConversionException */ public static function conversionFailedInvalidType( $value, $toType, array $possibleTypes, ?Throwable $previous = null ) { if (is_scalar($value) || $value === null) { return new self(sprintf( 'Could not convert PHP value %s to type %s. Expected one of the following types: %s', var_export($value, true), $toType, implode(', ', $possibleTypes) ), 0, $previous); } return new self(sprintf( 'Could not convert PHP value of type %s to type %s. Expected one of the following types: %s', is_object($value) ? get_class($value) : gettype($value), $toType, implode(', ', $possibleTypes) ), 0, $previous); } /** * @param mixed $value * @param string $format * @param string $error * * @return ConversionException */ public static function conversionFailedSerialization($value, $format, $error /*, ?Throwable $previous = null */) { $actualType = is_object($value) ? get_class($value) : gettype($value); return new self(sprintf( "Could not convert PHP type '%s' to '%s', as an '%s' error was triggered by the serialization", $actualType, $format, $error ), 0, func_num_args() >= 4 ? func_get_arg(3) : null); } public static function conversionFailedUnserialization(string $format, string $error): self { return new self(sprintf( "Could not convert database value to '%s' as an error was triggered by the unserialization: '%s'", $format, $error )); } }