PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
doctrine
/
dbal
/
src
/
Event
<?php namespace Doctrine\DBAL\Event; use Doctrine\Common\EventArgs; use Doctrine\DBAL\Connection; /** * Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection. */ class ConnectionEventArgs extends EventArgs { /** @var Connection */ private $connection; public function __construct(Connection $connection) { $this->connection = $connection; } /** * @return Connection */ public function getConnection() { return $this->connection; } }
[-] SchemaDropTableEventArgs.php
[edit]
[-] SchemaAlterTableAddColumnEventArgs.php
[edit]
[+]
..
[-] SchemaColumnDefinitionEventArgs.php
[edit]
[-] SchemaAlterTableChangeColumnEventArgs.php
[edit]
[-] SchemaAlterTableEventArgs.php
[edit]
[-] SchemaCreateTableColumnEventArgs.php
[edit]
[-] ConnectionEventArgs.php
[edit]
[+]
Listeners
[-] SchemaEventArgs.php
[edit]
[-] SchemaIndexDefinitionEventArgs.php
[edit]
[-] SchemaAlterTableRemoveColumnEventArgs.php
[edit]
[-] SchemaAlterTableRenameColumnEventArgs.php
[edit]
[-] SchemaCreateTableEventArgs.php
[edit]