/
home
/
obinna
/
html
/
boazapp
/
vendor
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Mapping
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ORM\Mapping; /** * {@inheritDoc} * * @todo remove or rename ClassMetadataInfo to ClassMetadata * @template-covariant T of object * @template-extends ClassMetadataInfo<T> */ class ClassMetadata extends ClassMetadataInfo { /** * Repeating the ClassMetadataInfo constructor to infer correctly the template with PHPStan * * @see https://github.com/doctrine/orm/issues/8709 * * @param string $entityName The name of the entity class the new instance is used for. * @psalm-param class-string<T> $entityName */ public function __construct($entityName, ?NamingStrategy $namingStrategy = null, ?TypedFieldMapper $typedFieldMapper = null) { parent::__construct($entityName, $namingStrategy, $typedFieldMapper); } }