mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-19 03:53:55 +00:00
10 lines
153 B
PHP
10 lines
153 B
PHP
<?php
|
|
|
|
namespace SuiteCRM\Enumerator;
|
|
|
|
class DatabaseDriver
|
|
{
|
|
const NO_DRIVER = 'NO_DRIVER';
|
|
const MYSQL = 'MYSQL';
|
|
const MSSQL = 'MSSQL';
|
|
}
|