SchemaDropTableEventArgs
extends SchemaEventArgs
in package
Event Arguments used when the SQL query for dropping tables are generated inside Doctrine\DBAL\Platform\AbstractPlatform.
Tags
Table of Contents
- $_emptyEventArgsInstance : EventArgs
- Single instance of EventArgs.
- $_platform : AbstractPlatform
- $_preventDefault : bool
- $_sql : string|null
- $_table : string|Table
- __construct() : mixed
- getEmptyInstance() : EventArgs
- Gets the single, empty and immutable EventArgs instance.
- getPlatform() : AbstractPlatform
- getSql() : string|null
- getTable() : string|Table
- isDefaultPrevented() : bool
- preventDefault() : SchemaEventArgs
- setSql() : SchemaDropTableEventArgs
Properties
$_emptyEventArgsInstance
Single instance of EventArgs.
private
static EventArgs
$_emptyEventArgsInstance
$_platform
private
AbstractPlatform
$_platform
$_preventDefault
private
bool
$_preventDefault
= false
$_sql
private
string|null
$_sql
= null
$_table
private
string|Table
$_table
Methods
__construct()
public
__construct(string|Table $table, AbstractPlatform $platform) : mixed
Parameters
- $table : string|Table
- $platform : AbstractPlatform
Tags
Return values
mixed —getEmptyInstance()
Gets the single, empty and immutable EventArgs instance.
public
static getEmptyInstance() : EventArgs
This instance will be used when events are dispatched without any parameter, like this: EventManager::dispatchEvent('eventname');
The benefit from this is that only one empty instance is instantiated and shared (otherwise there would be instances for every dispatched in the abovementioned form).
Tags
Return values
EventArgs —getPlatform()
public
getPlatform() : AbstractPlatform
Return values
AbstractPlatform —getSql()
public
getSql() : string|null
Return values
string|null —getTable()
public
getTable() : string|Table
Return values
string|Table —isDefaultPrevented()
public
isDefaultPrevented() : bool
Return values
bool —preventDefault()
public
preventDefault() : SchemaEventArgs
Return values
SchemaEventArgs —setSql()
public
setSql(string $sql) : SchemaDropTableEventArgs
Parameters
- $sql : string