ColumnCase.php 429 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Doctrine\DBAL;
  3. /**
  4. * Contains portable column case conversions.
  5. */
  6. final class ColumnCase
  7. {
  8. /**
  9. * Convert column names to upper case.
  10. */
  11. public const UPPER = 1;
  12. /**
  13. * Convert column names to lower case.
  14. */
  15. public const LOWER = 2;
  16. /**
  17. * This class cannot be instantiated.
  18. *
  19. * @codeCoverageIgnore
  20. */
  21. private function __construct()
  22. {
  23. }
  24. }