-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix typo in the name and add index file
- Loading branch information
1 parent
a34f6df
commit 8c98194
Showing
9 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
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.