ColumnCase.php 467 Bytes
Newer Older
1 2 3 4 5 6 7
<?php

namespace Doctrine\DBAL;

/**
 * Contains portable column case conversions.
 */
8
final class ColumnCase
9 10 11 12 13 14
{
    /**
     * Convert column names to upper case.
     *
     * @see \PDO::CASE_UPPER
     */
15
    public const UPPER = 1;
16 17 18 19 20 21

    /**
     * Convert column names to lower case.
     *
     * @see \PDO::CASE_LOWER
     */
22
    public const LOWER = 2;
23 24 25 26

    /**
     * This class cannot be instantiated.
     */
27
    private function __construct()
28 29 30
    {
    }
}