Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | const DEFAULT_COLLATION = 'utf8_unicode_ci'; |
||
13 | |||
14 | /** |
||
15 | * @link https://secure.php.net/manual/en/ref.pdo-mysql.connection.php |
||
16 | * |
||
17 | * The PDO_MYSQL Data Source Name (DSN) is composed of the following elements: |
||
18 | */ |
||
19 | const AVAILABLE_ELEMENTS = [ |
||
20 | 'host', |
||
21 | 'port', |
||
22 | 'dbname', |
||
23 | 'unix_socket' |
||
24 | ]; |
||
80 |