namespace Doctrine\Common\Persistence\Mapping\Driver

Classsort descending Location Description
AnnotationDriver drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/AnnotationDriver.php The AnnotationDriver reads the mapping metadata from docblock annotations.
DefaultFileLocator drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/DefaultFileLocator.php Locate the file that contains the metadata information for a given class name.
FileDriver drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/FileDriver.php Base driver for file-based metadata drivers.
FileLocator drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/FileLocator.php Locate the file that contains the metadata information for a given class name.
MappingDriver drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/MappingDriver.php Contract for metadata drivers.
MappingDriverChain drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/MappingDriverChain.php The DriverChain allows you to add multiple other mapping drivers for certain namespaces
PHPDriver drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/PHPDriver.php The PHPDriver includes php files which just populate ClassMetadataInfo instances with plain php code
StaticPHPDriver drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/StaticPHPDriver.php The StaticPHPDriver calls a static loadMetadata() method on your entity classes where you can manually populate the ClassMetadata instance.
SymfonyFileLocator drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/SymfonyFileLocator.php The Symfony File Locator makes a simplifying assumptions compared to the DefaultFileLocator. By assuming paths only contain entities of a certain namespace the mapping files consists of the short classname only.