handler() public method

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