Skip to content

Commit

Permalink
Connection should implement the new interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Freudenberger committed Jul 12, 2012
1 parent 6da6b7f commit 6ae5658
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/Doctrine/DBAL/Connection.php
Expand Up @@ -27,14 +27,15 @@
Doctrine\DBAL\Cache\ResultCacheStatement, Doctrine\DBAL\Cache\ResultCacheStatement,
Doctrine\DBAL\Cache\QueryCacheProfile, Doctrine\DBAL\Cache\QueryCacheProfile,
Doctrine\DBAL\Cache\ArrayStatement, Doctrine\DBAL\Cache\ArrayStatement,
Doctrine\DBAL\Cache\CacheException; Doctrine\DBAL\Cache\CacheException
Doctrine\DBAL\Transactional;


/** /**
* A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like * A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like
* events, transaction isolation levels, configuration, emulated transaction nesting, * events, transaction isolation levels, configuration, emulated transaction nesting,
* lazy connecting and more. * lazy connecting and more.
* *
* *
* @link www.doctrine-project.org * @link www.doctrine-project.org
* @since 2.0 * @since 2.0
* @author Guilherme Blanco <guilhermeblanco@hotmail.com> * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
Expand All @@ -44,7 +45,7 @@
* @author Lukas Smith <smith@pooteeweet.org> (MDB2 library) * @author Lukas Smith <smith@pooteeweet.org> (MDB2 library)
* @author Benjamin Eberlei <kontakt@beberlei.de> * @author Benjamin Eberlei <kontakt@beberlei.de>
*/ */
class Connection implements DriverConnection class Connection implements DriverConnection, Transactional
{ {
/** /**
* Constant for transaction isolation level READ UNCOMMITTED. * Constant for transaction isolation level READ UNCOMMITTED.
Expand Down

0 comments on commit 6ae5658

Please sign in to comment.