NoTablesFound.php 312 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Migrations\Exception;
  4. use RuntimeException;
  5. final class NoTablesFound extends RuntimeException implements MigrationException
  6. {
  7. public static function new(): self
  8. {
  9. return new self('Your database schema does not contain any tables.');
  10. }
  11. }