ArrayParameters
2 years ago
Cache
9 months ago
Driver
9 months ago
Event
2 years ago
Exception
9 months ago
Id
2 years ago
Logging
2 years ago
Platforms
9 months ago
Portability
2 years ago
Query
2 years ago
SQL
9 months ago
Schema
8 months ago
Types
9 months ago
ArrayParameterType.php
2 years ago
ColumnCase.php
2 years ago
Configuration.php
9 months ago
Connection.php
9 months ago
ConnectionException.php
2 years ago
Driver.php
2 years ago
DriverManager.php
2 years ago
Events.php
2 years ago
Exception.php
2 years ago
ExpandArrayParameters.php
2 years ago
FetchMode.php
2 years ago
LockMode.php
2 years ago
ParameterType.php
2 years ago
Query.php
2 years ago
Result.php
2 years ago
Statement.php
2 years ago
TransactionIsolationLevel.php
2 years ago
VersionAwarePlatformDriver.php
2 years ago
index.php
2 years ago
Events.php
24 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | final class Events |
| 5 | { |
| 6 | private function __construct() |
| 7 | { |
| 8 | } |
| 9 | public const postConnect = 'postConnect'; |
| 10 | public const onSchemaCreateTable = 'onSchemaCreateTable'; |
| 11 | public const onSchemaCreateTableColumn = 'onSchemaCreateTableColumn'; |
| 12 | public const onSchemaDropTable = 'onSchemaDropTable'; |
| 13 | public const onSchemaAlterTable = 'onSchemaAlterTable'; |
| 14 | public const onSchemaAlterTableAddColumn = 'onSchemaAlterTableAddColumn'; |
| 15 | public const onSchemaAlterTableRemoveColumn = 'onSchemaAlterTableRemoveColumn'; |
| 16 | public const onSchemaAlterTableChangeColumn = 'onSchemaAlterTableChangeColumn'; |
| 17 | public const onSchemaAlterTableRenameColumn = 'onSchemaAlterTableRenameColumn'; |
| 18 | public const onSchemaColumnDefinition = 'onSchemaColumnDefinition'; |
| 19 | public const onSchemaIndexDefinition = 'onSchemaIndexDefinition'; |
| 20 | public const onTransactionBegin = 'onTransactionBegin'; |
| 21 | public const onTransactionCommit = 'onTransactionCommit'; |
| 22 | public const onTransactionRollBack = 'onTransactionRollBack'; |
| 23 | } |
| 24 |