Lines Matching refs:annotations

4 There are several different approaches to handling annotations in PHP. Doctrine Annotations
5 maps docblock annotations to PHP classes. Because not all docblock annotations are used
6 … metadata purposes a filter is applied to ignore or skip classes that are not Doctrine annotations.
40 In this snippet you can see a variety of different docblock annotations:
42annotations such as ``@var`` and ``@author``. These annotations are on a blacklist and never consi…
47 How are these annotations loaded? From looking at the code you could guess that the ORM Mapping, As…
71 Doctrine saves all its annotations in a single file, that is why ``AnnotationRegistry#registerFile`…
74 …e actual AnnotationReader instance. Note that we also add "dummy" to the global list of annotations
81 To use the annotations library is simple, you just need to create a new ``AnnotationReader`` instan…
109 …also use one of the ``Doctrine\Common\Cache\Cache`` cache implementations to cache the annotations:
123 …flag is used here as well to invalidate the cache files when the PHP class with annotations changed
129 assumption that all annotations of a doc-block are processed at
133 annotations requested again, this time with all annotations
136 …ault the annotation reader returns a list of annotations with numeric indexes. If you want your an…
162 …contains annotations and that their base directory is located at the given $dirs or in the include…
171 …ow a warning or exception if the loading failed otherwise parsing doc block annotations will become
199 - Is not part of the blacklist of ignored "documentation annotations".
215 usage of annotations and throw exceptions if you misspelled an annotation. This mechanism is enable…