示例#1
0
 /**
  * @return \PDO
  */
 public function getDbAdapter()
 {
     if (!$this->_db) {
         $this->setDB();
     }
     return $this->_db->getConnection();
 }
 public function testGetConnection()
 {
     $this->assertInstanceOf('PDO', $this->db->getConnection());
     $this->db->closeConnection();
 }