TrimMode.php 267 B

1234567891011121314151617181920
  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. private function __construct()
  11. {
  12. }
  13. }