/
home
/
obinna
/
html
/
boaz2
/
vendor
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Mapping
/
Exception
/
Upload File
HOME
<?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); } }