NoMappingFound.php 321 B

123456789101112131415
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\Migrations\Provider\Exception;
  4. use UnexpectedValueException;
  5. final class NoMappingFound extends UnexpectedValueException implements ProviderException
  6. {
  7. public static function new(): self
  8. {
  9. return new self('No mapping information to process');
  10. }
  11. }