GenerateSchemaEventArgs
extends EventArgs
in package
Event Args used for the Events::postGenerateSchema event.
Tags
Table of Contents
Properties
- $_emptyEventArgsInstance : EventArgs|null
- Single instance of EventArgs.
- $em : EntityManagerInterface
- $schema : Schema
Methods
- __construct() : mixed
- getEmptyInstance() : EventArgs
- Gets the single, empty and immutable EventArgs instance.
- getEntityManager() : EntityManagerInterface
- getSchema() : Schema
Properties
$_emptyEventArgsInstance
Single instance of EventArgs.
private
static EventArgs|null
$_emptyEventArgsInstance
$em
private
EntityManagerInterface
$em
$schema
private
Schema
$schema
Methods
__construct()
public
__construct(EntityManagerInterface $em, Schema $schema) : mixed
Parameters
- $em : EntityManagerInterface
- $schema : Schema
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
EventArgsgetEntityManager()
public
getEntityManager() : EntityManagerInterface
Return values
EntityManagerInterfacegetSchema()
public
getSchema() : Schema