mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 22:02:22 +08:00
35 lines
539 B
PHP
35 lines
539 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\DBAL;
|
||
|
|
||
|
use PDO;
|
||
|
|
||
|
/**
|
||
|
* Contains portable column case conversions.
|
||
|
*/
|
||
|
final class ColumnCase
|
||
|
{
|
||
|
/**
|
||
|
* Convert column names to upper case.
|
||
|
*
|
||
|
* @see \PDO::CASE_UPPER
|
||
|
*/
|
||
|
public const UPPER = PDO::CASE_UPPER;
|
||
|
|
||
|
/**
|
||
|
* Convert column names to lower case.
|
||
|
*
|
||
|
* @see \PDO::CASE_LOWER
|
||
|
*/
|
||
|
public const LOWER = PDO::CASE_LOWER;
|
||
|
|
||
|
/**
|
||
|
* This class cannot be instantiated.
|
||
|
*
|
||
|
* @codeCoverageIgnore
|
||
|
*/
|
||
|
private function __construct()
|
||
|
{
|
||
|
}
|
||
|
}
|