2017-02-01 22:04:52 -05:00

22 lines
374 B
PHP

<?php
namespace DataAccess;
use Exception;
class CommonDao {
/**
* @throws Exception if the database isn't properly configured
*/
function init() {
if (!function_exists('hesk_dbConnect')) {
throw new Exception('Database not loaded!');
}
hesk_dbConnect();
}
function close() {
hesk_dbClose();
}
}