* @author Bernhard Posselt * @copyright Alessandro Cosentino 2012 * @copyright Bernhard Posselt 2012, 2014 */ namespace OCA\News\Db; use \OCP\IConfig; use \OCA\News\Core\Db; class MapperFactory { private $dbType; public function __construct($dbType, Db $db) { $this->dbType = $dbType; $this->db = $db; } public function getItemMapper() { switch($this->dbType) { case 'pgsql': return new \OCA\News\Db\Postgres\ItemMapper($this->db); break; default: return new ItemMapper($this->db); break; } } }