. */ namespace Doctrine\DBAL\Event; use Doctrine\Common\EventArgs, Doctrine\DBAL\Connection; /** * Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection. * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.com * @since 1.0 * @version $Revision$ * @author Benjamin Eberlei */ class ConnectionEventArgs extends EventArgs { /** * @var Connection */ private $_connection = null; public function __construct(Connection $connection) { $this->_connection = $connection; } /** * @return \Doctrine\DBAL\Connection */ public function getConnection() { return $this->_connection; } /** * @return \Doctrine\DBAL\Driver */ public function getDriver() { return $this->_connection->getDriver(); } /** * @return \Doctrine\DBAL\Platforms\AbstractPlatform */ public function getDatabasePlatform() { return $this->_connection->getDatabasePlatform(); } /** * @return \Doctrine\DBAL\Schema\AbstractSchemaManager */ public function getSchemaManager() { return $this->_connection->getSchemaManager(); } }