for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\Migrations\Provider\Exception;
use UnexpectedValueException;
final class NoMappingFound extends UnexpectedValueException implements ProviderException
{
public static function new() : self
return new self('No mapping information to process');
}