Current path: home/webdevt/www/schtroumpf.fr/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Exception/
?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping\Exception;
use Doctrine\ORM\Exception\ORMException;
final class UnknownGeneratorType extends ORMException
{
public static function create(int $generatorType): self
{
return new self('Unknown generator type: ' . $generatorType);
}
}