summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
Commit message (Collapse)AuthorAgeFilesLines
* fix bug #36898 (__set() leaks in classes extending internal ones)Antony Dovgal2006-03-291-5/+2
| | | | | | | | | Added: ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC) to initialize and destroy zend_object structs
* - MFH:Marcus Boerger2006-03-121-8/+64
| | | | | | | | | | | | - Fix ReflectionParameter . Reintroduce getClass() . Change getDeclaringClass() to return what it suggests . (inactive but tested) Add getDeclaringFunction() . (inactive but tested) Add getPosition() - Fix tests accordingly # This also fixes Bug #36687 ReflectionParameter::getDeclaringClass returns # wrong result
* stray textRasmus Lerdorf2006-03-061-1/+1
|
* - MFH Proto fixesMarcus Boerger2006-03-061-7/+7
|
* - Fix warningMarcus Boerger2006-02-281-1/+1
|
* - Add ReflectionExtension::getDependencies()Marcus Boerger2006-02-251-0/+88
|
* - MFH: Function deprecation flagMarcus Boerger2006-02-251-1/+15
|
* - MFH: Fix #29986 (Class constants won't work with predefined constants whenJohannes Schlüter2006-02-241-0/+1
| | | | | using ReflectionClass)
* - MFH: Rename reflection constants to fix parser conflictsJohannes Schlüter2006-02-201-13/+13
|
* Fixed bug #36434 (Improper resolution of declaring class name of anIlia Alshanetsky2006-02-201-1/+9
| | | | | inherited property).
* - MFH Fix naming inconsistency (providing old name as alias)Marcus Boerger2006-02-181-3/+4
|
* Fixed bug #36337 (ReflectionProperty fails to return correct visibility).Ilia Alshanetsky2006-02-131-6/+2
|
* Fixed bug #36308 (ReflectionProperty::getDocComment() does not reflectIlia Alshanetsky2006-02-081-6/+2
| | | | | extended class commentary).
* MFH: fix ReflectionClass::getInterfaces()Michael Wallner2006-02-061-1/+1
|
* fix printf-style formatsAntony Dovgal2006-01-301-3/+3
|
* - MFH Bug #36141 Add ReflectionClass::newInstanceArgs($args)Marcus Boerger2006-01-251-2/+76
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* tix fypoAntony Dovgal2005-12-181-3/+3
|
* - Fix MFH (oversight problem)Marcus Boerger2005-12-111-1/+1
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* Fixed bug #34729 (Crash in ZTS mode under Apache)Dmitry Stogov2005-12-011-3/+3
|
* - Moved reflection into its own extensionMarcus Boerger2005-11-301-0/+4281
|
* - Not in this branchMarcus Boerger2005-11-171-4041/+0
|
* Allow recursive calls to __get/__set for different propertiesDmitry Stogov2005-11-151-8/+2
|
* Fixed bug #29268 (__autoload() not called with Reflection->getClass())Dmitry Stogov2005-10-211-5/+2
|
* MFH: fix copy/paste typoAntony Dovgal2005-10-201-1/+1
|
* - MFH ReflectionClass::isInstantiable and abstract classesMarcus Boerger2005-10-061-1/+1
|
* MFH: check class_entry of this_ptr in Reflection APIAntony Dovgal2005-09-161-83/+83
|
* fix #34505 (possible memory corruption when unmangling properties with empty ↵Antony Dovgal2005-09-161-4/+4
| | | | | | | names) 1st part
* Support for class constants and static members for internal classesDmitry Stogov2005-09-011-0/+1
|
* Fixed possible memory leakDmitry Stogov2005-08-301-0/+1
|
* Fixed bug #32981 (ReflectionMethod::getStaticVariables() causes apache2.0.54 ↵Dmitry Stogov2005-08-171-0/+1
| | | | seg fault)
* fix #34078 (Reflection API problems in methods with boolean or null default ↵Antony Dovgal2005-08-111-1/+1
| | | | values)
* Bump up the yearfoobar2005-08-031-1/+1
|
* Fixed bug #33512 (Add missing support for isset()/unset() overloading to ↵Dmitry Stogov2005-07-071-0/+4
| | | | complement the property get/set methods)
* Fixed memory leak.Ilia Alshanetsky2005-06-211-0/+3
| | | | | # Found by valgrind w/o zend-mm being used.
* - Fix bug #33389 by fixing copyingMarcus Boerger2005-06-201-19/+17
|
* - Show true/flaseMarcus Boerger2005-06-201-1/+7
|
* - Internal functions/methods can now return by referenceMarcus Boerger2005-06-161-1/+1
|
* Fixed bug #33312 (ReflectionParameter methods do not work correctly)Dmitry Stogov2005-06-131-6/+24
|
* Fixed support for ZEND_ACC_SHADOW in ReflectionProperty constructorDmitry Stogov2005-06-101-1/+1
|
* MF50: fix #29689 and more private property problemsStanislav Malyshev2005-06-091-7/+14
|
* Fixed ReflectionClass::setStaticPropertyValue()Dmitry Stogov2005-06-081-0/+7
|
* Added array type hinting. (This patch requires full re-make)Dmitry Stogov2005-05-261-0/+20
|
* - Make ReflectionObject::hasProperty() recognize dynamically added propsMarcus Boerger2005-05-121-0/+11
|
* Correct grammar.Sebastian Bergmann2005-04-251-2/+2
|
* - Add ReflectionProperty::getDocComment()Marcus Boerger2005-04-191-0/+16
|
* - Fix by TimMarcus Boerger2005-03-061-0/+1
|
* - Add two new methodsMarcus Boerger2005-02-271-1/+64
| | | | | - Fix signature, no need to cast it
* - Fixed bug #32076 (ReflectionMethod :: isDestructor() always return true)Derick Rethans2005-02-231-1/+1
| | | | | (Patch by Antony Dogval)