PlanAlreadyExecuted.php 310 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Migrations\Exception;
  4. use RuntimeException;
  5. final class PlanAlreadyExecuted extends RuntimeException implements MigrationException
  6. {
  7. public static function new(): self
  8. {
  9. return new self('This plan was already marked as executed.');
  10. }
  11. }