You are here

namespace Doctrine\Common\Persistence\Mapping\Driver in Zircon Profile 8

Same name in other branches
  1. 8.0 Doctrine\Common\Persistence\Mapping\Driver
Classsort descending Location Description
AnnotationDriver vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/AnnotationDriver.php The AnnotationDriver reads the mapping metadata from docblock annotations.
DefaultFileLocator vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/DefaultFileLocator.php Locates the file that contains the metadata information for a given class name.
FileDriver vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/FileDriver.php Base driver for file-based metadata drivers.
FileLocator vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/FileLocator.php Locates the file that contains the metadata information for a given class name.
MappingDriver vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/Driver/MappingDriver.php Contract for metadata drivers.
MappingDriverChain 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 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 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 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.