handler() public method

Return PDO handler
public handler ( ) : PDO
return PDO
Esempio n. 1
0
 /**
  * Initial Db with configuration
  */
 public function testCheckConnect()
 {
     $this->db->connect();
     $this->assertInstanceOf('\\Pdo', $this->db->handler());
 }