| Current Path : /var/www/html/mmishra/mm/phpwebsite-1.8.x/Global/Database/ |
| Current File : /var/www/html/mmishra/mm/phpwebsite-1.8.x/Global/Database/Engine.php |
<?php
namespace Database;
/**
* Description of Engine
*
* @author matt
*/
abstract class Engine {
protected $db;
abstract public function addPrimaryIndexId(\Database\Table $table);
abstract public function getDBType();
abstract public function getDelimiter();
public function __construct(\DB $db)
{
$this->db = $db;
}
}
?>