Direction.php 381 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Migrations\Version;
  4. /**
  5. * The Direction class contains constants for the directions a migration can be executed.
  6. *
  7. * @internal
  8. */
  9. final class Direction
  10. {
  11. public const UP = 'up';
  12. public const DOWN = 'down';
  13. /**
  14. * This class cannot be instantiated.
  15. */
  16. private function __construct()
  17. {
  18. }
  19. }