├── .github └── workflows │ └── run-tests.yml ├── LICENSE ├── README.md ├── composer.json └── src └── Barryvdh └── Reflection ├── DocBlock.php └── DocBlock ├── Context.php ├── ContextFactory.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 ├── SuppressWarningsTag.php ├── TemplateTag.php ├── ThrowsTag.php ├── UsesTag.php ├── VarTag.php └── VersionTag.php └── Type └── Collection.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/composer.json -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Context.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/ContextFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/ContextFactory.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Description.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Location.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Serializer.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/AuthorTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/CoversTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/DeprecatedTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/ExampleTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/ExampleTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/LinkTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/LinkTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/MethodTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/MethodTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/ParamTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/ParamTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/PropertyReadTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/PropertyReadTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/PropertyTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/PropertyTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/PropertyWriteTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/PropertyWriteTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/SeeTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/SeeTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/SinceTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/SinceTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/SourceTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/SourceTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/SuppressWarningsTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/SuppressWarningsTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/TemplateTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/TemplateTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/ThrowsTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/ThrowsTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/UsesTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/UsesTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/VarTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/VarTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Tag/VersionTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Tag/VersionTag.php -------------------------------------------------------------------------------- /src/Barryvdh/Reflection/DocBlock/Type/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barryvdh/ReflectionDocBlock/HEAD/src/Barryvdh/Reflection/DocBlock/Type/Collection.php --------------------------------------------------------------------------------