Lines Matching refs:that

6 for metadata purposes a filter is applied to ignore or skip classes that are not Doctrine annotatio…
43 …The statement ``use Doctrine\ORM\Mapping AS ORM`` makes all classes under that namespace available…
47 How are these annotations loaded? From looking at the code you could guess that the ORM Mapping, As…
70 …he annotation registry calls registers all the three different annotation namespaces that are used.
71 Doctrine saves all its annotations in a single file, that is why ``AnnotationRegistry#registerFile`…
74 In the third block, we create the actual AnnotationReader instance. Note that we also add "dummy" t…
129 assumption that all annotations of a doc-block are processed at
130 once. That means that annotation classes that do not exist and
156 given annotation has a corresponding PHP class that can be autoloaded. For Annotation Autoloading y…
160 - Calling ``AnnotationRegistry#registerFile($file)`` to register a file that contains one or more…
161 - Calling ``AnnotationRegistry#registerNamespace($namespace, $dirs = null)`` to register that the…
162 …contains annotations and that their base directory is located at the given $dirs or in the include…
170 …lently, if a class is not found even if it matches for example the namespace prefix of that loader.
185 // file exists makes sure that the loader fails silently
197 By default an exception is thrown from the AnnotationReader if an annotation was found that:
201 - Is not a fully qualified class that exists
217 To ease the upgrade path, we still allow you to disable this mechanism. Note however that we will r…