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.218.99.99
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 namespace Doctrine\DBAL\Platforms; use Doctrine\DBAL\Types\Types; use Doctrine\Deprecations\Deprecation; /** * Provides the behavior, features and SQL dialect of the MariaDB database platform of the oldest supported version. */ class MariaDBPlatform extends MySQLPlatform { /** * {@inheritDoc} * * Hop over the {@see AbstractMySQLPlatform} implementation until 4.0.x * where {@see MariaDBPlatform} no longer extends {@see MySQLPlatform}. * * @internal The method should be only used from within the {@see AbstractPlatform} class hierarchy. */ public function getDefaultValueDeclarationSQL($column) { return AbstractPlatform::getDefaultValueDeclarationSQL($column); } /** * {@inheritdoc} * * @link https://mariadb.com/kb/en/library/json-data-type/ */ public function getJsonTypeDeclarationSQL(array $column): string { return 'LONGTEXT'; } /** * @deprecated Implement {@see createReservedKeywordsList()} instead. */ protected function getReservedKeywordsClass(): string { Deprecation::triggerIfCalledFromOutside( 'doctrine/dbal', 'https://github.com/doctrine/dbal/issues/4510', 'MariaDb1027Platform::getReservedKeywordsClass() is deprecated,' . ' use MariaDb1027Platform::createReservedKeywordsList() instead.' ); return Keywords\MariaDb102Keywords::class; } protected function initializeDoctrineTypeMappings(): void { parent::initializeDoctrineTypeMappings(); $this->doctrineTypeMapping['json'] = Types::JSON; } }