mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-28 08:02:16 +08:00
21 lines
284 B
PHP
21 lines
284 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\DBAL;
|
|
|
|
/**
|
|
* Contains portable column case conversions.
|
|
*/
|
|
enum ColumnCase
|
|
{
|
|
/**
|
|
* Convert column names to upper case.
|
|
*/
|
|
case UPPER;
|
|
|
|
/**
|
|
* Convert column names to lower case.
|
|
*/
|
|
case LOWER;
|
|
}
|