Home
last modified time | relevance | path

Searched refs:AnnotationReader (Results 1 – 15 of 15) sorted by relevance

/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
Dannotations.rst48 …r error handling reasons every check for class existence inside the AnnotationReader sets the seco…
49 of ``class_exists($name, $autoload)`` to false. To work flawlessly the AnnotationReader requires si…
60 use Doctrine\Common\Annotations\AnnotationReader;
67 $reader = new AnnotationReader();
68 AnnotationReader::addGlobalIgnoredName('dummy');
74 In the third block, we create the actual AnnotationReader instance. Note that we also add "dummy" t…
81 To use the annotations library is simple, you just need to create a new ``AnnotationReader`` instan…
85 $reader = new \Doctrine\Common\Annotations\AnnotationReader();
96 use Doctrine\Common\Annotations\AnnotationReader;
99 new AnnotationReader(),
[all …]
Dindex.rst64 ``Doctrine\Common\Annotations\AnnotationReader``:
71 $reader = new AnnotationReader();
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
DAnnotationDriverTest.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
15 …return new AnnotationDriver(new AnnotationReader(), new IdenticalPropertyNamingStrategy(), null, $…
DDoctrinePHPCRDriverTest.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
91 … new DoctrinePHPCRDriver(new AnnotationReader(), __DIR__ . '/../../Fixtures/DoctrinePHPCR')
101 return new AnnotationDriver(new AnnotationReader(), new IdenticalPropertyNamingStrategy());
DDoctrineDriverTest.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
131 new DoctrineDriver(new AnnotationReader(), __DIR__ . '/../../Fixtures/Doctrine')
144 return new AnnotationDriver(new AnnotationReader(), new IdenticalPropertyNamingStrategy());
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/tests/
DXmlSchemaDateHandlerDeserializationTest.php4 use Doctrine\Common\Annotations\AnnotationReader; alias
57 … $metadataFactory = new MetadataFactory(new AnnotationDriver(new AnnotationReader(), $naming));
64 $metadataFactory = new MetadataFactory(new AnnotationDriver(new AnnotationReader()));
DXmlSchemaDateHandlerSerializationTest.php4 use Doctrine\Common\Annotations\AnnotationReader; alias
55 … $metadataFactory = new MetadataFactory(new AnnotationDriver(new AnnotationReader(), $naming));
62 $metadataFactory = new MetadataFactory(new AnnotationDriver(new AnnotationReader()));
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
DSerializationContextFactoryTest.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
35 …$this->metadataFactory = new MetadataFactory(new AnnotationDriver(new AnnotationReader(), $namingS…
DGraphNavigatorTest.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
154 …$this->metadataFactory = new MetadataFactory(new AnnotationDriver(new AnnotationReader(), new Iden…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Doctrine/
DIntegrationTest.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
137 $cfg->setMetadataDriverImpl(new AnnotationDriver(new AnnotationReader(), [
DObjectConstructorTest.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
271 $cfg->setMetadataDriverImpl(new AnnotationDriver(new AnnotationReader(), [
/plugin/findologicxmlexport/vendor/jms/serializer/src/
DSerializerBuilder.php7 use Doctrine\Common\Annotations\AnnotationReader; alias
124 * @var AnnotationReader
506 $annotationReader = new AnnotationReader();
/plugin/findologicxmlexport/vendor/doctrine/annotations/
DCHANGELOG.md45 - [133: Add @throws annotation in AnnotationReader#__construct()](https://github.com/doctrine/annot…
90 via `Doctrine\Common\Annotations\AnnotationReader::addGlobalIgnoredNamespace()` and
101 the `AnnotationReader` constructor
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
DAnnotationReader.php37 class AnnotationReader implements Reader class
/plugin/findologicxmlexport/vendor/jms/serializer/
DCHANGELOG.md986 - Use the AnnotationReader interface in the SerializerBuilder, instead of the implemented Annotatio…