Skip to content

Commit

Permalink
DoctrineAdapter: fixed wrong namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
solcik authored and JanTvrdik committed Nov 1, 2015
1 parent 25e5f58 commit 1eb7a02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bridges/DoctrineDbal/DoctrineAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

class DoctrineAdapter implements IDbal
{
/** @var Doctrine\Dbal\Connection */
/** @var Doctrine\DBAL\Connection */
private $conn;


public function __construct(Doctrine\Dbal\Connection $conn)
public function __construct(Doctrine\DBAL\Connection $conn)
{
$this->conn = $conn;
}
Expand Down

0 comments on commit 1eb7a02

Please sign in to comment.