Home
last modified time | relevance | path

Searched refs:annotations (Results 101 – 125 of 137) sorted by last modified time

123456

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestResult.php614 $annotations = $test->getAnnotations();
616 …if (isset($annotations['class']['coversNothing']) || isset($annotations['method']['coversNothing']…
876 $annotations = $test->getAnnotations();
878 if (isset($annotations['method']['todo'])) {
H A DTestCase.php2464 $annotations = $this->getAnnotations();
2466 if (isset($annotations['method']['doesNotPerformAssertions'])) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/TextUI/
H A Dhelp.phpt25 --disable-coverage-ignore Disable annotations for ignoring code coverage.
H A Dhelp2.phpt26 --disable-coverage-ignore Disable annotations for ignoring code coverage.
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dconfiguration.rst12 If you are using the standalone library and you want to use annotations, the annotation registry mu…
29 …lects several metadata about your objects from various sources such as YML, XML, or annotations. In
67 This library supports several metadata sources. By default, it uses Doctrine annotations, but you m…
H A Dindex.rst61 * :doc:`Annotations </reference/annotations>`
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dsidebar.rst5 annotations
H A Dannotations.rst4 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…
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:
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…
[all …]
H A Dindex.rst33 $ composer require doctrine/annotations
55 :ref:`Read more about custom annotations. <custom>`
57 Reading annotations
60 The access to the annotations happens by reflection of the class
63 access the annotations of a class. A common one is
79 A reader has multiple methods to access the annotations
82 :ref:`Read more about handling annotations. <annotations>`
87 Some IDEs already provide support for annotations:
92 .. _Read more about handling annotations.: annotations
93 .. _Read more about custom annotations.: custom
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DIndexedReader.php49 $annotations = array();
51 $annotations[get_class($annot)] = $annot;
54 return $annotations;
70 $annotations = array();
72 $annotations[get_class($annot)] = $annot;
75 return $annotations;
91 $annotations = array();
93 $annotations[get_class($annot)] = $annot;
96 return $annotations;
H A DAnnotationReader.php230 $annotations = $this->getClassAnnotations($class);
232 foreach ($annotations as $annotation) {
262 $annotations = $this->getPropertyAnnotations($property);
264 foreach ($annotations as $annotation) {
294 $annotations = $this->getMethodAnnotations($method);
296 foreach ($annotations as $annotation) {
405 …$annotations = $this->preParser->parse($class->getDocComment(), 'class ' . $class->name…
407 foreach ($annotations as $annotation) {
/plugin/findologicxmlexport/vendor/doctrine/annotations/
H A DCHANGELOG.md5 This release fixes an issue in which annotations such as `@foo-bar`
10 allowing vendor-specific annotations to be prefixed with the tool
17 - [257: Skip parsing annotations containing dashes, such as `@Foo-bar`, or `@Foo-`](https://github.…
56 - [115: Missing annotations with the latest composer version](https://github.com/doctrine/annotatio…
57 - [120: Missing annotations with the latest composer version](https://github.com/doctrine/annotatio…
70 anyway. [#110](https://github.com/doctrine/annotations/pull/110)
73 not correctly checking the freshness of cached annotations when
114 - [74: Ignore not registered annotations fix](https://github.com/doctrine/annotations/pull/74)
116 … [96: Fix/#62 check trait and parent class ttl in annotations](https://github.com/doctrine/annotat…
155 * Allowing dangling comma in annotations
[all …]
H A DREADME.md3 …Status](https://travis-ci.org/doctrine/annotations.svg?branch=master)](https://travis-ci.org/doctr…
4 …ioneye.com/package/php--doctrine--annotations/badge.png)](https://www.versioneye.com/package/php--…
5 …//www.versioneye.com/php/doctrine:annotations/reference_badge.svg)](https://www.versioneye.com/php…
6 …ads](https://poser.pugx.org/doctrine/annotations/downloads.png)](https://packagist.org/packages/do…
7 …ion](https://poser.pugx.org/doctrine/annotations/v/stable.png)](https://packagist.org/packages/doc…
13 …e](http://docs.doctrine-project.org/projects/doctrine-common/en/latest/reference/annotations.html).
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst12 do this with the annotations ``@ExclusionPolicy``, ``@Exclude``, and ``@Expose``.
26 * The following annotations tells the serializer to skip all properties which
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md720 - Remove deprecated FileCacheReader for doctrine annotations [\#634](https://github.com/schmittjoh/…
861 - doctrine annotations without namespace [\#264](https://github.com/schmittjoh/serializer/issues/26…
874 - Fixes a typo in the annotations.rst [\#363](https://github.com/schmittjoh/serializer/pull/363) ([…
954 - Update annotations.rst [\#146](https://github.com/schmittjoh/serializer/pull/146) ([chrisjohnson0…
1042 - Fixed typo in doc/reference/annotations.rst [\#16](https://github.com/schmittjoh/serializer/pull/…
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
H A DREADME.md10 With this component, a library can provide support for annotations via DocBlocks
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-2.2.md41 …rage::setDisableIgnoredLines()` to disable the ignoring of lines using annotations such as `@codeC…
H A DChangeLog-3.2.md15 * Added optional check for missing `@covers` annotation when the usage of `@covers` annotations is …
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTest.php69 $annotations = self::parseTestMethodAnnotations(
74 …if (isset($annotations['class']['coversNothing']) || isset($annotations['method']['coversNothing']…
128 if (isset($annotations['class'][$mode])) {
129 $list = $annotations['class'][$mode];
132 if (isset($annotations['method'][$mode])) {
542 $annotations = [];
567 $annotations = [];
580 return $annotations;
590 $annotations = [];
602 return $annotations;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DResultPrinter.php264 $annotations = $test->getAnnotations();
266 if (isset($annotations['method']['testdox'][0])) {
267 $this->currentTestMethodPrettified = $annotations['method']['testdox'][0];
/plugin/404manager/
H A DLICENSE42 editorial revisions, annotations, elaborations, or other modifications
/plugin/gtime/gtlib/
H A DLICENSE43 editorial revisions, annotations, elaborations, or other modifications
/plugin/mdpage/vendor/cebe/markdown/
H A DREADME.md55 The library uses PHPDoc annotations to determine the markdown elements that should be parsed.
74 ….save-comments) option because inline element parsing relies on PHPdoc annotations to find declare…
/plugin/amcharts/assets/amcharts/plugins/dataloader/
H A Dlicense.txt42 editorial revisions, annotations, elaborations, or other modifications
/plugin/amcharts/assets/amcharts/plugins/export/libs/pdfmake/
H A Dpdfmake.js27722 annotations: {
65917 this.page.annotations.push(ref);

123456