/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/ |
H A D | Serializer.php | 13 namespace phpDocumentor\Reflection\DocBlock; 15 use phpDocumentor\Reflection\DocBlock; alias 35 /** @var DocBlock\Tags\Formatter A custom tag formatter. */ 45 …* @param DocBlock\Tags\Formatter $tagFormatter A custom tag formatter, defaults to PassthroughForm… 59 $this->tagFormatter = $tagFormatter ?: new DocBlock\Tags\Formatter\PassthroughFormatter(); 65 * @param DocBlock $docblock The DocBlock to serialize. 69 public function getDocComment(DocBlock $docblock) 117 * @param DocBlock $docblock 121 private function getSummaryAndDescriptionTextBlock(DocBlock $docblock, $wrapLength) 134 * @param DocBlock $docblock [all …]
|
H A D | Description.php | 13 namespace phpDocumentor\Reflection\DocBlock; 15 use phpDocumentor\Reflection\DocBlock\Tags\Formatter; 16 use phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter;
|
H A D | Tag.php | 13 namespace phpDocumentor\Reflection\DocBlock; 15 use phpDocumentor\Reflection\DocBlock\Tags\Formatter;
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/ |
H A D | DocBlock.php | 15 use phpDocumentor\Reflection\DocBlock\Tag; 18 final class DocBlock class 23 /** @var DocBlock\Description The actual description for this docblock. */ 43 * @param DocBlock\Description $description 44 * @param DocBlock\Tag[] $tags 52 DocBlock\Description $description = null, 65 $this->description = $description ?: new DocBlock\Description(''); 86 * @return DocBlock\Description
|
H A D | DocBlockFactory.php | 15 use phpDocumentor\Reflection\DocBlock\DescriptionFactory; 16 use phpDocumentor\Reflection\DocBlock\StandardTagFactory; 17 use phpDocumentor\Reflection\DocBlock\Tag; 18 use phpDocumentor\Reflection\DocBlock\TagFactory; 23 /** @var DocBlock\DescriptionFactory */ 26 /** @var DocBlock\TagFactory */ 71 * @return DocBlock 93 return new DocBlock( 220 * @return DocBlock\Tag[]
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/ |
H A D | See.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory; 17 use phpDocumentor\Reflection\DocBlock\Tags\Reference\Fqsen as FqsenRef; 18 use phpDocumentor\Reflection\DocBlock\Tags\Reference\Reference; 19 use phpDocumentor\Reflection\DocBlock\Tags\Reference\Url;
|
H A D | BaseTag.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock; alias 16 use phpDocumentor\Reflection\DocBlock\Description; 21 abstract class BaseTag implements DocBlock\Tag
|
H A D | Generic.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory; 17 use phpDocumentor\Reflection\DocBlock\StandardTagFactory;
|
H A D | Since.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Version.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Link.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Deprecated.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Covers.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Uses.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Return_.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Throws.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | Formatter.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Tag;
|
H A D | Source.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
H A D | PropertyRead.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags; 15 use phpDocumentor\Reflection\DocBlock\Description; 16 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/ |
H A D | README.md | 7 The ReflectionDocBlock component of phpDocumentor provides a DocBlock parser 11 or otherwise retrieve information that is embedded in a DocBlock. 23 In order to parse the DocBlock one needs a DocBlockFactory that can be 30 Then we can use the `create` method of the factory to interpret the DocBlock. 50 The `create` method will yield an object of type `\phpDocumentor\Reflection\DocBlock` 54 // Contains the summary for this DocBlock 57 // Contains \phpDocumentor\Reflection\DocBlock\Description object
|
H A D | easy-coding-standard.neon | 23 - src/DocBlock/StandardTagFactory.php 26 - src/DocBlock/StandardTagFactory.php 28 - src/DocBlock/Tags/Return_.php 29 - src/DocBlock/Tags/Var_.php
|
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/ |
H A D | LegacyClassTagRetriever.php | 14 use phpDocumentor\Reflection\DocBlock; alias 15 use phpDocumentor\Reflection\DocBlock\Tag\MethodTag as LegacyMethodTag; 31 $phpdoc = new DocBlock($reflectionClass->getDocComment());
|
H A D | MethodTagRetrieverInterface.php | 14 use phpDocumentor\Reflection\DocBlock\Tag\MethodTag as LegacyMethodTag; 15 use phpDocumentor\Reflection\DocBlock\Tags\Method;
|
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/ |
H A D | PassthroughFormatter.php | 13 namespace phpDocumentor\Reflection\DocBlock\Tags\Formatter; 15 use phpDocumentor\Reflection\DocBlock\Tag; 16 use phpDocumentor\Reflection\DocBlock\Tags\Formatter;
|
H A D | AlignFormatter.php | 14 namespace phpDocumentor\Reflection\DocBlock\Tags\Formatter; 16 use phpDocumentor\Reflection\DocBlock\Tag; 17 use phpDocumentor\Reflection\DocBlock\Tags\Formatter;
|