vendor/doctrine/dbal/src/ParameterType.php line 10

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\DBAL;
  4. /**
  5. * Statement parameter type.
  6. */
  7. enum ParameterType
  8. {
  9. /**
  10. * Represents the SQL NULL data type.
  11. */
  12. case NULL;
  13. /**
  14. * Represents the SQL INTEGER data type.
  15. */
  16. case INTEGER;
  17. /**
  18. * Represents the SQL CHAR, VARCHAR, or other string data type.
  19. */
  20. case STRING;
  21. /**
  22. * Represents the SQL large object data type.
  23. */
  24. case LARGE_OBJECT;
  25. /**
  26. * Represents a boolean data type.
  27. */
  28. case BOOLEAN;
  29. /**
  30. * Represents a binary string data type.
  31. */
  32. case BINARY;
  33. /**
  34. * Represents an ASCII string data type
  35. */
  36. case ASCII;
  37. }