Documentation

SchemaAlterTableEventArgs extends SchemaEventArgs
in package

Event Arguments used when SQL queries for creating tables are generated inside Doctrine\DBAL\Platform\*Platform.

Tags
link
www.doctrine-project.org
since
2.2
author

Jan Sorgalla jsorgalla@googlemail.com

Table of Contents

$_emptyEventArgsInstance  : EventArgs
Single instance of EventArgs.
$_platform  : AbstractPlatform
$_preventDefault  : bool
$_sql  : array<string|int, mixed>
$_tableDiff  : TableDiff
__construct()  : mixed
addSql()  : SchemaAlterTableEventArgs
getEmptyInstance()  : EventArgs
Gets the single, empty and immutable EventArgs instance.
getPlatform()  : AbstractPlatform
getSql()  : array<string|int, mixed>
getTableDiff()  : TableDiff
isDefaultPrevented()  : bool
preventDefault()  : SchemaEventArgs

Properties

$_emptyEventArgsInstance

Single instance of EventArgs.

private static EventArgs $_emptyEventArgsInstance

Methods

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
see
EventManager::dispatchEvent
link
http://msdn.microsoft.com/en-us/library/system.eventargs.aspx
Return values
EventArgs

isDefaultPrevented()

public isDefaultPrevented() : bool
Return values
bool

Search results