summaryrefslogtreecommitdiff
path: root/ext/reflection
Commit message (Collapse)AuthorAgeFilesLines
* show ini entries and classes for extensions.Marcus Boerger2004-04-191-4/+83
|
* Bugfix #27519 Reflection_Function constructor crashes with non-existantMarcus Boerger2004-04-081-2/+2
| | | | | function's name
* - Fix typoAndi Gutmans2004-03-311-9/+9
|
* Fix testsMarcus Boerger2004-03-302-7/+5
|
* Fix testMarcus Boerger2004-03-302-2/+2
|
* TSRM fixMarcus Boerger2004-03-301-0/+1
|
* - Fix Reflection class namesMarcus Boerger2004-03-301-11/+131
| | | | | | - Add ability to get the extension an internal class was defined in # This is the patch Andi and me used to search for underscrores...
* Fix memleak found by TimmMarcus Boerger2004-03-281-2/+0
|
* Clearify the different method/class flags (as discussed with Andi).Marcus Boerger2004-03-091-9/+14
|
* Add another missing conversionMarcus Boerger2004-03-081-0/+1
|
* - include exception.inc not .phpPierre Joye2004-03-021-1/+1
|
* - excpetion.php => exception.inc (derick)Pierre Joye2004-03-011-0/+0
|
* - initial release, reflection tests suitePierre Joye2004-03-012-0/+60
|
* - Fix leakAndi Gutmans2004-03-011-1/+1
|
* - Fix crash in reflection API (pierre)Andi Gutmans2004-03-011-4/+8
|
* - Apply fixes by Timm.Andi Gutmans2004-02-291-2/+7
|
* Fix problem with Reflection_Property (patch from Timm slightly modified).Marcus Boerger2004-02-261-3/+12
|
* Proto fixes.Sebastian Bergmann2004-02-251-9/+9
|
* Centralize exceptions code in zend_exceptions.[ch].Zeev Suraski2004-02-121-1/+1
| | | | | | | | Remove zend_default_classes.h (use zend_exceptions.h instead) NOTE: This currently breaks the build, fixes to php-src and pecl coming soon
* Fix crash (patch by Rob Richards)Zeev Suraski2004-02-111-1/+1
|
* Fix reflectionMarcus Boerger2004-02-041-3/+3
|
* Change destructor implementation (details will follow on internals@)Zeev Suraski2004-02-041-1/+1
|
* Throw an exception in case a reflection object cannot be found and do notMarcus Boerger2004-01-311-6/+14
| | | | | override the exception from constructors in static method calls.
* Fix some casing issuesMarcus Boerger2004-01-181-13/+19
|
* - Fixed bug #26640 (__autoload() not invoked by Reflection classes)foobar2004-01-161-53/+26
| | | | | | | | # Also removed double call of reflection_register_implement() on # reflection_extension_ptr. # Fixed also case-insensitive lookup of property names, # now Reflection_Property('Classname', 'FooBar'); works too.
* Added test case for bug #26640foobar2004-01-161-0/+25
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-082-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* - Fixed var_export() to show public, protected and private modifiers properly.Derick Rethans2004-01-031-3/+3
| | | | | - Exported (un)mangle_property_name.
* Add more testsMarcus Boerger2003-12-221-0/+25
|
* Fixed bug #26695 (Reflection API does not recognize mixed-case class hints)Marcus Boerger2003-12-221-2/+5
| | | | | # The exception part
* Memory corruptions were fixed in zend_str_tolower_copy()Dmitry Stogov2003-12-151-10/+10
|
* - Fix __autoload() to preserve class case.Andi Gutmans2003-11-241-12/+2
| | | | | | - Heads up, this patch might break stuff so please let me know if you - bump into any problems.
* - Allocation optimizations by Timm FriebeAndi Gutmans2003-11-231-35/+47
|
* Add method reflection_class::implementsInterface()Marcus Boerger2003-11-081-9/+90
| | | | | Allow string & reflection_class in isSubclassOf()
* Fix reflection_class::isSubclassOf()Marcus Boerger2003-11-081-1/+1
|
* This forces a better error message for non working clone calls.Marcus Boerger2003-10-251-0/+1
|
* You shall not clone reflection_xx instancesMarcus Boerger2003-10-251-1/+18
|
* Show if a class/object is iterateableMarcus Boerger2003-10-171-0/+18
|
* Fix showing final/abstract for classesMarcus Boerger2003-10-171-2/+2
|
* Add public array Reflection_Class::getDefaultProperties()Marcus Boerger2003-09-201-0/+45
|
* Go with studlyCapsMarcus Boerger2003-09-181-130/+130
|
* Change tostring() into __toString() to match method name used in casting.Marcus Boerger2003-09-181-24/+24
|
* - Make it clear whether it is an interface or a classMarcus Boerger2003-09-161-2/+2
| | | | | - Fix static properties
* Add missing newline if no static methods are availableMarcus Boerger2003-09-061-1/+1
|
* - Internal functions shall be staticMarcus Boerger2003-09-061-9/+16
| | | | | - Fix more nesting
* Fix logicMarcus Boerger2003-09-061-2/+2
|
* - Fix CS: {{{ / }}}Marcus Boerger2003-09-061-46/+194
| | | | | | - Fix static reflection_*::export() - Add class reflection_object which allows to show dynamic properties
* Use %s where it makes more senseMarcus Boerger2003-09-061-17/+23
|
* Simplify reflection_property::__constructor() and fix property factoryMarcus Boerger2003-09-051-15/+14
|
* - Don't use resorved words as variable names.Marcus Boerger2003-09-051-47/+88
| | | | | | | | - Improve several exception messages. - Fix Reflection_Property::_construct() / getDeclaringClass() # The above does not imply that properties are fixed when returned # by other reflection api methods.