diff options
Diffstat (limited to 'vendor/doctrine/dbal/src/ColumnCase.php')
| -rw-r--r-- | vendor/doctrine/dbal/src/ColumnCase.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/doctrine/dbal/src/ColumnCase.php b/vendor/doctrine/dbal/src/ColumnCase.php new file mode 100644 index 0000000..687a04f --- /dev/null +++ b/vendor/doctrine/dbal/src/ColumnCase.php | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\DBAL; | ||
| 6 | |||
| 7 | /** | ||
| 8 | * Contains portable column case conversions. | ||
| 9 | */ | ||
| 10 | enum ColumnCase | ||
| 11 | { | ||
| 12 | /** | ||
| 13 | * Convert column names to upper case. | ||
| 14 | */ | ||
| 15 | case UPPER; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * Convert column names to lower case. | ||
| 19 | */ | ||
| 20 | case LOWER; | ||
| 21 | } | ||
