Skip to content

Commit 8c98194

Browse files
committed
Fix typo in the name and add index file
1 parent a34f6df commit 8c98194

9 files changed

+22
-0
lines changed

docs/README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
ParserReflection API Reference
2+
==============
3+
4+
Introduction
5+
--------
6+
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.
7+
8+
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.
9+
10+
`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.
11+
12+
Reference
13+
---------
14+
15+
- [`ReflectionClass`](reflection_class.md)
16+
- [`ReflectionFile`](reflection_file.md)
17+
- [`ReflectionFileNamespace`](reflection_file_namespace.md)
18+
- [`ReflectionFunction`](reflection_function.md)
19+
- [`ReflectionMethod`](reflection_method.md)
20+
- [`ReflectionParameter`](reflection_parameter.md)
21+
- [`ReflectionProperty`](reflection_property.md)
22+
- [`ReflectionType`](reflection_type.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)