Laravel version update
Laravel version update
This commit is contained in:
30
vendor/doctrine/dbal/lib/Doctrine/DBAL/ColumnCase.php
vendored
Normal file
30
vendor/doctrine/dbal/lib/Doctrine/DBAL/ColumnCase.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace Doctrine\DBAL;
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user