gitextract_rmb768rz/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── documentation.yml │ └── integrate.yaml ├── .gitignore ├── .yamllint.yaml ├── LICENSE ├── Makefile ├── README.md ├── composer-require-checker.json ├── composer.json ├── docs/ │ ├── contributing.rst │ ├── examples/ │ │ ├── 01-interpreting-a-simple-docblock.php │ │ ├── 02-interpreting-tags.php │ │ ├── 03-reconstituting-a-docblock.php │ │ ├── 04-adding-your-own-tag.php │ │ └── playing-with-descriptions/ │ │ └── 02-escaping.php │ ├── how-to/ │ │ ├── adding-your-own-tag.rst │ │ ├── index.rst │ │ ├── interpreting-a-simple-docblock.rst │ │ ├── interpreting-tags.rst │ │ └── reconstituting-a-docblock.rst │ ├── index.rst │ ├── installation.rst │ └── upgrade-to-v6.rst ├── phive.xml ├── phpcs.xml.dist ├── phpdoc.dist.xml ├── phpmd.xml.dist ├── phpstan-baseline.neon ├── phpstan.neon ├── phpunit.xml.dist ├── psalm.xml ├── src/ │ ├── DocBlock/ │ │ ├── Description.php │ │ ├── DescriptionFactory.php │ │ ├── ExampleFinder.php │ │ ├── Serializer.php │ │ ├── StandardTagFactory.php │ │ ├── Tag.php │ │ ├── TagFactory.php │ │ └── Tags/ │ │ ├── Author.php │ │ ├── BaseTag.php │ │ ├── Covers.php │ │ ├── Deprecated.php │ │ ├── Example.php │ │ ├── Extends_.php │ │ ├── Factory/ │ │ │ ├── AbstractPHPStanFactory.php │ │ │ ├── ExtendsFactory.php │ │ │ ├── Factory.php │ │ │ ├── ImplementsFactory.php │ │ │ ├── MethodFactory.php │ │ │ ├── MethodParameterFactory.php │ │ │ ├── MixinFactory.php │ │ │ ├── PHPStanFactory.php │ │ │ ├── ParamFactory.php │ │ │ ├── PropertyFactory.php │ │ │ ├── PropertyReadFactory.php │ │ │ ├── PropertyWriteFactory.php │ │ │ ├── ReturnFactory.php │ │ │ ├── TemplateCovariantFactory.php │ │ │ ├── TemplateFactory.php │ │ │ ├── ThrowsFactory.php │ │ │ └── VarFactory.php │ │ ├── Formatter/ │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ ├── Formatter.php │ │ ├── Generic.php │ │ ├── Implements_.php │ │ ├── InvalidTag.php │ │ ├── Link.php │ │ ├── Method.php │ │ ├── MethodParameter.php │ │ ├── Mixin.php │ │ ├── Param.php │ │ ├── Property.php │ │ ├── PropertyRead.php │ │ ├── PropertyWrite.php │ │ ├── Reference/ │ │ │ ├── Fqsen.php │ │ │ ├── Reference.php │ │ │ └── Url.php │ │ ├── Return_.php │ │ ├── See.php │ │ ├── Since.php │ │ ├── Source.php │ │ ├── TagWithType.php │ │ ├── Template.php │ │ ├── TemplateCovariant.php │ │ ├── TemplateExtends.php │ │ ├── TemplateImplements.php │ │ ├── Throws.php │ │ ├── Uses.php │ │ ├── Var_.php │ │ └── Version.php │ ├── DocBlock.php │ ├── DocBlockFactory.php │ ├── DocBlockFactoryInterface.php │ ├── Exception/ │ │ ├── CannotCreateTag.php │ │ ├── ParserException.php │ │ ├── PcreException.php │ │ └── ReflectionDocblockException.php │ └── Utils.php └── tests/ ├── coverage-checker.php ├── integration/ │ ├── DocblockSeeTagResolvingTest.php │ ├── DocblocksWithAnnotationsTest.php │ ├── InterpretingDocBlocksTest.php │ ├── ModifyBackTraceSafeTest.php │ ├── ReconstitutingADocBlockTest.php │ ├── TypedTagsTest.php │ └── UsingTagsTest.php └── unit/ ├── Assets/ │ ├── CustomParam.php │ ├── CustomServiceClass.php │ ├── CustomServiceInterface.php │ └── CustomTagFactory.php ├── DocBlock/ │ ├── DescriptionFactoryTest.php │ ├── DescriptionTest.php │ ├── ExampleFinderTest.php │ ├── SerializerTest.php │ ├── StandardTagFactoryTest.php │ └── Tags/ │ ├── AuthorTest.php │ ├── CoversTest.php │ ├── DeprecatedTest.php │ ├── ExampleTest.php │ ├── ExtendsTest.php │ ├── Factory/ │ │ ├── AbstractPHPStanFactoryTest.php │ │ ├── ExtendsFactoryTest.php │ │ ├── ImplementsFactoryTest.php │ │ ├── MethodFactoryTest.php │ │ ├── MixinFactoryTest.php │ │ ├── ParamFactoryTest.php │ │ ├── PropertyFactoryTest.php │ │ ├── PropertyReadFactoryTest.php │ │ ├── PropertyWriteFactoryTest.php │ │ ├── ReturnFactoryTest.php │ │ ├── TagFactoryTestCase.php │ │ ├── TemplateCovariantFactoryTest.php │ │ ├── TemplateFactoryTest.php │ │ ├── ThrowsFactoryTest.php │ │ └── VarFactoryTest.php │ ├── Formatter/ │ │ ├── AlignFormatterTest.php │ │ └── PassthroughFormatterTest.php │ ├── GenericTest.php │ ├── ImplementsTest.php │ ├── InvalidTagTest.php │ ├── LinkTest.php │ ├── MethodParameterTest.php │ ├── MethodTest.php │ ├── ParamTest.php │ ├── PropertyReadTest.php │ ├── PropertyTest.php │ ├── PropertyWriteTest.php │ ├── ReturnTest.php │ ├── SeeTest.php │ ├── SinceTest.php │ ├── SourceTest.php │ ├── TemplateExtendsTest.php │ ├── TemplateImplementsTest.php │ ├── TemplateTest.php │ ├── ThrowsTest.php │ ├── UsesTest.php │ ├── VarTest.php │ └── VersionTest.php ├── DocBlockFactoryTest.php ├── DocBlockTest.php ├── Exception/ │ └── PcreExceptionTest.php └── PregSplitTest.php