File "ColumnCase.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/doctrine/dbal/src/ColumnCase.php
File size: 284 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
}