diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 00000000..73a08a59 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,22 @@ +ParserReflection API Reference +============== + +Introduction +-------- +PHP comes with a complete reflection API that adds the ability to reverse-engineer classes, interfaces, functions, methods and extensions. Additionally, the reflection API offers ways to retrieve doc comments for functions, classes and methods. + +But this reflection API requires concrete element to be loaded into the memory. Once element is loaded, it can not be changed, modified or updated without special extensions. + +`goaop\parser-reflection` packet is a userland implementation of reflection API that is fully compatible with internal one, but doesn't require element (e.g. class or function) to be loaded into the PHP. Only the source code is required for performing the raw analysis. + +Reference +--------- + +- [`ReflectionClass`](reflection_class.md) +- [`ReflectionFile`](reflection_file.md) +- [`ReflectionFileNamespace`](reflection_file_namespace.md) +- [`ReflectionFunction`](reflection_function.md) +- [`ReflectionMethod`](reflection_method.md) +- [`ReflectionParameter`](reflection_parameter.md) +- [`ReflectionProperty`](reflection_property.md) +- [`ReflectionType`](reflection_type.md) diff --git a/docs/relection_class.md b/docs/reflection_class.md similarity index 100% rename from docs/relection_class.md rename to docs/reflection_class.md diff --git a/docs/relection_file.md b/docs/reflection_file.md similarity index 100% rename from docs/relection_file.md rename to docs/reflection_file.md diff --git a/docs/relection_file_namespace.md b/docs/reflection_file_namespace.md similarity index 100% rename from docs/relection_file_namespace.md rename to docs/reflection_file_namespace.md diff --git a/docs/relection_function.md b/docs/reflection_function.md similarity index 100% rename from docs/relection_function.md rename to docs/reflection_function.md diff --git a/docs/relection_method.md b/docs/reflection_method.md similarity index 100% rename from docs/relection_method.md rename to docs/reflection_method.md diff --git a/docs/relection_parameter.md b/docs/reflection_parameter.md similarity index 100% rename from docs/relection_parameter.md rename to docs/reflection_parameter.md diff --git a/docs/relection_property.md b/docs/reflection_property.md similarity index 100% rename from docs/relection_property.md rename to docs/reflection_property.md diff --git a/docs/relection_type.md b/docs/reflection_type.md similarity index 100% rename from docs/relection_type.md rename to docs/reflection_type.md