* @copyright Colosa - Bolivia * * @url GET /db-engines */ public function doGetDataBaseEngines() { try { $oDBConnection = new \ProcessMaker\BusinessModel\DataBaseConnection(); $response = $oDBConnection->getDbEngines(); return $response; } catch (\Exception $e) { throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage())); } } }