1
0
mirror of synced 2024-12-14 15:16:04 +03:00

intermediate commit - see my next commit message

This commit is contained in:
pookey 2006-11-06 17:56:41 +00:00
parent b6ffa045d4
commit 4e0476f20d

View File

@ -18,15 +18,15 @@
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
class Doctrine_DBStatement extends PDOStatement {
class Doctrine_DbStatement extends PDOStatement {
/**
* @param Doctrine_DB $dbh Doctrine Database Handler
* @param Doctrine_Db $dbh Doctrine Database Handler
*/
private $dbh;
/**
* @param Doctrine_DB $dbh
* @param Doctrine_Db $dbh
*/
private function __construct(Doctrine_DB $dbh) {
private function __construct(Doctrine_Db $dbh) {
$this->dbh = $dbh;
}
/**