├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src └── Mpociot │ └── Reflection │ ├── DocBlock.php │ └── DocBlock │ ├── Context.php │ ├── Description.php │ ├── Location.php │ ├── Serializer.php │ ├── Tag.php │ ├── Tag │ ├── AuthorTag.php │ ├── CoversTag.php │ ├── DeprecatedTag.php │ ├── ExampleTag.php │ ├── LinkTag.php │ ├── MethodTag.php │ ├── ParamTag.php │ ├── PropertyReadTag.php │ ├── PropertyTag.php │ ├── PropertyWriteTag.php │ ├── ReturnTag.php │ ├── SeeTag.php │ ├── SinceTag.php │ ├── SourceTag.php │ ├── ThrowsTag.php │ ├── UsesTag.php │ ├── VarTag.php │ └── VersionTag.php │ └── Type │ └── Collection.php └── tests └── phpDocumentor └── Reflection ├── DocBlock ├── DescriptionTest.php ├── Tag │ ├── CoversTagTest.php │ ├── DeprecatedTagTest.php │ ├── ExampleTagTest.php │ ├── LinkTagTest.php │ ├── MethodTagTest.php │ ├── ParamTagTest.php │ ├── ReturnTagTest.php │ ├── SeeTagTest.php │ ├── SinceTagTest.php │ ├── SourceTagTest.php │ ├── ThrowsTagTest.php │ ├── UsesTagTest.php │ ├── VarTagTest.php │ └── VersionTagTest.php ├── TagTest.php └── Type │ └── CollectionTest.php └── DocBlockTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Context.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Description.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Location.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Serializer.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/AuthorTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/AuthorTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/CoversTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/CoversTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/DeprecatedTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/DeprecatedTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/ExampleTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/ExampleTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/LinkTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/LinkTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/MethodTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/MethodTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/ParamTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/ParamTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/PropertyReadTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/PropertyReadTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/PropertyTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/PropertyTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/PropertyWriteTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/PropertyWriteTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/ReturnTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/ReturnTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/SeeTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/SeeTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/SinceTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/SinceTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/SourceTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/SourceTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/ThrowsTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/ThrowsTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/UsesTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/UsesTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/VarTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/VarTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Tag/VersionTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Tag/VersionTag.php -------------------------------------------------------------------------------- /src/Mpociot/Reflection/DocBlock/Type/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/src/Mpociot/Reflection/DocBlock/Type/Collection.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/DescriptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/DescriptionTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/CoversTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/CoversTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/DeprecatedTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/DeprecatedTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/ExampleTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/ExampleTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/LinkTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/LinkTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/MethodTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/MethodTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/ParamTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/ParamTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/ReturnTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/ReturnTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/SeeTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/SeeTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/SinceTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/SinceTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/SourceTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/SourceTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/ThrowsTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/ThrowsTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/UsesTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/UsesTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/VarTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/VarTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Tag/VersionTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Tag/VersionTagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/TagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/TagTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlock/Type/CollectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlock/Type/CollectionTest.php -------------------------------------------------------------------------------- /tests/phpDocumentor/Reflection/DocBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/reflection-docblock/HEAD/tests/phpDocumentor/Reflection/DocBlockTest.php --------------------------------------------------------------------------------