summaryrefslogtreecommitdiffstats
path: root/tests/mocks/database/drivers/postgre.php
blob: 8c91e54a926749366039a930bdf8f592cf71d471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

class Mock_Database_Drivers_Postgre extends Mock_Database_DB_Driver {

	/**
	 * Instantiate the database driver
	 *
	 * @param	array	DB configuration to set
	 * @return	void
	 */
	public function __construct($config = array())
	{
		parent::__construct('CI_DB_postgre_driver', $config);
	}

}