TrimMode.php 310 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\DBAL\Platforms;
  4. final class TrimMode
  5. {
  6. public const UNSPECIFIED = 0;
  7. public const LEADING = 1;
  8. public const TRAILING = 2;
  9. public const BOTH = 3;
  10. /**
  11. * @codeCoverageIgnore
  12. */
  13. private function __construct()
  14. {
  15. }
  16. }