You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
429 B
28 lines
429 B
<?php
|
|
|
|
namespace Doctrine\DBAL;
|
|
|
|
/**
|
|
* Contains portable column case conversions.
|
|
*/
|
|
final class ColumnCase
|
|
{
|
|
/**
|
|
* Convert column names to upper case.
|
|
*/
|
|
public const UPPER = 1;
|
|
|
|
/**
|
|
* Convert column names to lower case.
|
|
*/
|
|
public const LOWER = 2;
|
|
|
|
/**
|
|
* This class cannot be instantiated.
|
|
*
|
|
* @codeCoverageIgnore
|
|
*/
|
|
private function __construct()
|
|
{
|
|
}
|
|
}
|
|
|