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 : 18.188.161.182
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 /
Platforms /
Delete
Unzip
Name
Size
Permission
Date
Action
Keywords
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
MySQL
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQLServer
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQLite
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
AbstractMySQLPlatform.php
40.58
KB
-rw-rw-r--
2022-08-21 14:21
AbstractPlatform.php
130.37
KB
-rw-rw-r--
2022-08-21 14:21
DB2Platform.php
28.05
KB
-rw-rw-r--
2022-08-21 14:21
DateIntervalUnit.php
470
B
-rw-rw-r--
2022-08-21 14:21
MariaDBPlatform.php
1.62
KB
-rw-rw-r--
2022-08-21 14:21
MariaDb1027Platform.php
433
B
-rw-rw-r--
2022-08-21 14:21
MySQL57Platform.php
2.33
KB
-rw-rw-r--
2022-08-21 14:21
MySQL80Platform.php
768
B
-rw-rw-r--
2022-08-21 14:21
MySQLPlatform.php
230
B
-rw-rw-r--
2022-08-21 14:21
OraclePlatform.php
37.95
KB
-rw-rw-r--
2022-08-21 14:21
PostgreSQL100Platform.php
1017
B
-rw-rw-r--
2022-08-21 14:21
PostgreSQL94Platform.php
259
B
-rw-rw-r--
2022-08-21 14:21
PostgreSQLPlatform.php
39.17
KB
-rw-rw-r--
2022-08-21 14:21
SQLServer2012Platform.php
298
B
-rw-rw-r--
2022-08-21 14:21
SQLServerPlatform.php
56.98
KB
-rw-rw-r--
2022-08-21 14:21
SqlitePlatform.php
40.95
KB
-rw-rw-r--
2022-08-21 14:21
TrimMode.php
310
B
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php declare(strict_types=1); namespace Doctrine\DBAL\Platforms; use Doctrine\DBAL\Platforms\Keywords\PostgreSQL100Keywords; use Doctrine\Deprecations\Deprecation; /** * Provides the behavior, features and SQL dialect of the PostgreSQL 10.0 database platform. * * @deprecated This class will be merged with {@see PostgreSQLPlatform} in 4.0 because support for Postgres * releases prior to 10.0 will be dropped. */ class PostgreSQL100Platform extends PostgreSQL94Platform { /** * @deprecated Implement {@see createReservedKeywordsList()} instead. */ protected function getReservedKeywordsClass(): string { Deprecation::triggerIfCalledFromOutside( 'doctrine/dbal', 'https://github.com/doctrine/dbal/issues/4510', 'PostgreSQL100Platform::getReservedKeywordsClass() is deprecated,' . ' use PostgreSQL100Platform::createReservedKeywordsList() instead.' ); return PostgreSQL100Keywords::class; } }