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\Column; use Doctrine\DBAL\Schema\TableDiff; use Doctrine\Deprecations\Deprecation; use function array_merge; use function func_get_args; use function is_array; /** * Event Arguments used when SQL queries for adding table columns are generated inside {@see AbstractPlatform}. */ class SchemaAlterTableAddColumnEventArgs extends SchemaEventArgs { private Column $column; private TableDiff $tableDiff; private AbstractPlatform $platform; /** @var string[] */ private array $sql = []; public function __construct(Column $column, TableDiff $tableDiff, AbstractPlatform $platform) { $this->column = $column; $this->tableDiff = $tableDiff; $this->platform = $platform; } /** * @return Column */ public function getColumn() { return $this->column; } /** * @return TableDiff */ public function getTableDiff() { return $this->tableDiff; } /** * @return AbstractPlatform */ public function getPlatform() { return $this->platform; } /** * Passing multiple SQL statements as an array is deprecated. Pass each statement as an individual argument instead. * * @param string|string[] $sql * * @return SchemaAlterTableAddColumnEventArgs */ public function addSql($sql) { if (is_array($sql)) { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/issues/3580', 'Passing multiple SQL statements as an array to SchemaAlterTableAddColumnEventaArrgs::addSql() ' . 'is deprecated. Pass each statement as an individual argument instead.' ); } $this->sql = array_merge($this->sql, is_array($sql) ? $sql : func_get_args()); return $this; } /** * @return string[] */ public function getSql() { return $this->sql; } }