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 /
Event /
Delete
Unzip
Name
Size
Permission
Date
Action
Listeners
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
ConnectionEventArgs.php
525
B
-rw-rw-r--
2022-08-21 14:21
SchemaAlterTableAddColumnEventArgs.php
2.05
KB
-rw-rw-r--
2022-08-21 14:21
SchemaAlterTableChangeColumnEventArgs.php
1.67
KB
-rw-rw-r--
2022-08-21 14:21
SchemaAlterTableEventArgs.php
1.38
KB
-rw-rw-r--
2022-08-21 14:21
SchemaAlterTableRemoveColumnEventArgs.php
1.63
KB
-rw-rw-r--
2022-08-21 14:21
SchemaAlterTableRenameColumnEventArgs.php
1.93
KB
-rw-rw-r--
2022-08-21 14:21
SchemaColumnDefinitionEventArgs.php
1.8
KB
-rw-rw-r--
2022-08-21 14:21
SchemaCreateTableColumnEventArgs.php
1.59
KB
-rw-rw-r--
2022-08-21 14:21
SchemaCreateTableEventArgs.php
1.87
KB
-rw-rw-r--
2022-08-21 14:21
SchemaDropTableEventArgs.php
1.22
KB
-rw-rw-r--
2022-08-21 14:21
SchemaEventArgs.php
492
B
-rw-rw-r--
2022-08-21 14:21
SchemaIndexDefinitionEventArgs.php
1.54
KB
-rw-rw-r--
2022-08-21 14:21
TransactionBeginEventArgs.php
130
B
-rw-rw-r--
2022-08-21 14:21
TransactionCommitEventArgs.php
131
B
-rw-rw-r--
2022-08-21 14:21
TransactionEventArgs.php
426
B
-rw-rw-r--
2022-08-21 14:21
TransactionRollBackEventArgs.php
133
B
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php namespace Doctrine\DBAL\Event; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Schema\Table; use InvalidArgumentException; /** * Event Arguments used when the SQL query for dropping tables are generated inside {@see AbstractPlatform}. */ class SchemaDropTableEventArgs extends SchemaEventArgs { /** @var string|Table */ private $table; private AbstractPlatform $platform; /** @var string|null */ private $sql; /** * @param string|Table $table * * @throws InvalidArgumentException */ public function __construct($table, AbstractPlatform $platform) { $this->table = $table; $this->platform = $platform; } /** * @return string|Table */ public function getTable() { return $this->table; } /** * @return AbstractPlatform */ public function getPlatform() { return $this->platform; } /** * @param string $sql * * @return SchemaDropTableEventArgs */ public function setSql($sql) { $this->sql = $sql; return $this; } /** * @return string|null */ public function getSql() { return $this->sql; } }