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\Connection; use Doctrine\DBAL\Schema\Index; /** * Event Arguments used when the portable index definition is generated inside {@see AbstractSchemaManager}. */ class SchemaIndexDefinitionEventArgs extends SchemaEventArgs { private ?Index $index = null; /** * Raw index data as fetched from the database. * * @var mixed[] */ private array $tableIndex; /** @var string */ private $table; private Connection $connection; /** * @param mixed[] $tableIndex * @param string $table */ public function __construct(array $tableIndex, $table, Connection $connection) { $this->tableIndex = $tableIndex; $this->table = $table; $this->connection = $connection; } /** * Allows to clear the index which means the index will be excluded from tables index list. * * @return SchemaIndexDefinitionEventArgs */ public function setIndex(?Index $index = null) { $this->index = $index; return $this; } /** * @return Index|null */ public function getIndex() { return $this->index; } /** * @return mixed[] */ public function getTableIndex() { return $this->tableIndex; } /** * @return string */ public function getTable() { return $this->table; } /** * @return Connection */ public function getConnection() { return $this->connection; } }