| Server IP : 217.160.0.212 / Your IP : 216.73.216.44 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/php/Doctrine/DBAL/Event/ |
Upload File : |
<?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}.
*
* @deprecated
*/
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;
}
}