SchemaColumnDefinitionEventArgs
extends SchemaEventArgs
in package
Event Arguments used when the portable column definition is generated inside Doctrine\DBAL\Schema\AbstractSchemaManager.
Tags
Table of Contents
- $_column : Column|null
- $_connection : Connection
- $_database : string
- $_emptyEventArgsInstance : EventArgs
- Single instance of EventArgs.
- $_preventDefault : bool
- $_table : string
- $_tableColumn : array<string|int, mixed>
- Raw column data as fetched from the database.
- __construct() : mixed
- getColumn() : Column|null
- getConnection() : Connection
- getDatabase() : string
- getDatabasePlatform() : AbstractPlatform
- getEmptyInstance() : EventArgs
- Gets the single, empty and immutable EventArgs instance.
- getTable() : string
- getTableColumn() : array<string|int, mixed>
- isDefaultPrevented() : bool
- preventDefault() : SchemaEventArgs
- setColumn() : SchemaColumnDefinitionEventArgs
- Allows to clear the column which means the column will be excluded from tables column list.
Properties
$_column
private
Column|null
$_column
= null
$_connection
private
Connection
$_connection
$_database
private
string
$_database
$_emptyEventArgsInstance
Single instance of EventArgs.
private
static EventArgs
$_emptyEventArgsInstance
$_preventDefault
private
bool
$_preventDefault
= false
$_table
private
string
$_table
$_tableColumn
Raw column data as fetched from the database.
private
array<string|int, mixed>
$_tableColumn
Methods
__construct()
public
__construct(array<string|int, mixed> $tableColumn, string $table, string $database, Connection $connection) : mixed
Parameters
- $tableColumn : array<string|int, mixed>
- $table : string
- $database : string
- $connection : Connection
Return values
mixed —getColumn()
public
getColumn() : Column|null
Return values
Column|null —getConnection()
public
getConnection() : Connection
Return values
Connection —getDatabase()
public
getDatabase() : string
Return values
string —getDatabasePlatform()
public
getDatabasePlatform() : AbstractPlatform
Return values
AbstractPlatform —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 —getTable()
public
getTable() : string
Return values
string —getTableColumn()
public
getTableColumn() : array<string|int, mixed>
Return values
array<string|int, mixed> —isDefaultPrevented()
public
isDefaultPrevented() : bool
Return values
bool —preventDefault()
public
preventDefault() : SchemaEventArgs
Return values
SchemaEventArgs —setColumn()
Allows to clear the column which means the column will be excluded from tables column list.
public
setColumn([null|Column $column = null ]) : SchemaColumnDefinitionEventArgs
Parameters
- $column : null|Column = null