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.15.10.50
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 /
Delete
Unzip
Name
Size
Permission
Date
Action
ArrayParameters
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Cache
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Connections
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Driver
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Event
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Exception
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Id
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Logging
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Platforms
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Portability
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Query
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQL
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Schema
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Tools
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Types
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
ColumnCase.php
429
B
-rw-rw-r--
2022-08-21 14:21
Configuration.php
6.09
KB
-rw-rw-r--
2022-08-21 14:21
Connection.php
58.91
KB
-rw-rw-r--
2022-08-21 14:21
ConnectionException.php
969
B
-rw-rw-r--
2022-08-21 14:21
Driver.php
1.43
KB
-rw-rw-r--
2022-08-21 14:21
DriverManager.php
14.99
KB
-rw-rw-r--
2022-08-21 14:21
Events.php
1.32
KB
-rw-rw-r--
2022-08-21 14:21
Exception.php
4.91
KB
-rw-rw-r--
2022-08-21 14:21
ExpandArrayParameters.php
3.72
KB
-rw-rw-r--
2022-08-21 14:21
FetchMode.php
331
B
-rw-rw-r--
2022-08-21 14:21
LockMode.php
419
B
-rw-rw-r--
2022-08-21 14:21
ParameterType.php
982
B
-rw-rw-r--
2022-08-21 14:21
Query.php
1.19
KB
-rw-rw-r--
2022-08-21 14:21
Result.php
7.9
KB
-rw-rw-r--
2022-08-21 14:21
Statement.php
7.45
KB
-rw-rw-r--
2022-08-21 14:21
TransactionIsolationLevel.php
613
B
-rw-rw-r--
2022-08-21 14:21
VersionAwarePlatformDriver.php
1.02
KB
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php namespace Doctrine\DBAL; use Doctrine\DBAL\Driver\API\ExceptionConverter; use Doctrine\DBAL\Driver\Connection as DriverConnection; use Doctrine\DBAL\Driver\Exception; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Schema\AbstractSchemaManager; /** * Driver interface. * Interface that all DBAL drivers must implement. */ interface Driver { /** * Attempts to create a connection with the database. * * @param mixed[] $params All connection parameters. * * @return DriverConnection The database connection. * * @throws Exception */ public function connect(array $params); /** * Gets the DatabasePlatform instance that provides all the metadata about * the platform this driver connects to. * * @return AbstractPlatform The database platform. */ public function getDatabasePlatform(); /** * Gets the SchemaManager that can be used to inspect and change the underlying * database schema of the platform this driver connects to. * * @deprecated Use {@link AbstractPlatform::createSchemaManager()} instead. * * @return AbstractSchemaManager */ public function getSchemaManager(Connection $conn, AbstractPlatform $platform); /** * Gets the ExceptionConverter that can be used to convert driver-level exceptions into DBAL exceptions. */ public function getExceptionConverter(): ExceptionConverter; }