summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
Commit message (Collapse)AuthorAgeFilesLines
...
* MFH: fix coverity issue #411Antony Dovgal2007-09-271-3/+3
|
* - Fugbix typo.Sebastian Bergmann2007-08-201-1/+1
|
* - MFH: Mark the parameter for ReflectionProperty::GetValue as optionalJohannes Schlüter2007-08-171-1/+1
|
* - New ReflectionExtension::info() function to print the phpinfo() blockJohannes Schlüter2007-07-241-0/+15
| | | | | for an extension. [DOC]
* Avoid endless loopHannes Magnusson2007-07-231-0/+2
|
* MFHAntony Dovgal2007-07-111-24/+32
|
* MFH: fix copy/paste type and bug #41962Antony Dovgal2007-07-111-1/+1
|
* - Bug #41525 ReflectionParameter::getPosition() not availableMarcus Boerger2007-05-291-16/+1
| | | | | | | | | | | # This was supposed to be dropped in 5.1.4, I wonder why thisis not in # because the functionality is documented. # [ DOC ] Make sure the function documentation is correct for: # ReflectionParameter::getPosition # ReflectionParameter::getDeclaringFunction # ReflectionFunction::getExtension # ReflectionFunction::getExtensionName
* MFH: fix logicHannes Magnusson2007-05-281-1/+1
|
* - Fix bug #41061 ("visibility error" in ReflectionFunction::export())Johannes Schlüter2007-04-121-15/+19
|
* MFH: fix #40794 (ReflectionObject::getValues() may crash when used with ↵Antony Dovgal2007-03-171-21/+21
| | | | dynamic properties)
* Fugbix typo.Sebastian Bergmann2007-03-161-7/+7
|
* MFHAntony Dovgal2007-02-101-4/+9
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Fixed bug #39884 (ReflectionParameter::getClass() throws exception for typeIlia Alshanetsky2006-12-221-1/+34
| | | | | hint self).
* - MFH: Fix #38465 (ReflectionParameter fails if default value is an access ↵Johannes Schlüter2006-10-181-1/+1
| | | | to self::
* MFH: fix #39125 (Memleak when reflecting non-existing class/method)Antony Dovgal2006-10-111-0/+7
|
* more improvementsAntony Dovgal2006-10-061-2/+2
|
* MFH: fix #39067 (getDeclaringClass() and private properties)Antony Dovgal2006-10-061-0/+4
|
* Fixed bug #38942 (Double old-style-ctor inheritance)Dmitry Stogov2006-10-031-4/+10
|
* MFH: #39001 (ReflectionProperty returns incorrect declaring class for ↵Antony Dovgal2006-10-021-2/+9
| | | | protected properties)
* Fixed bug #38942 (Double old-style-ctor inheritance)Dmitry Stogov2006-09-261-2/+14
|
* - MFH: Print the type of the original valueJohannes Schlüter2006-09-111-1/+4
|
* - MFH: Fix #37923 (Display constant value in reflection::export)Johannes Schlüter2006-09-111-2/+15
|
* Make ReflectionFunctionAbstract abstractHannes Magnusson2006-09-101-5/+6
| | | | | | | | - Move ReflectionFunctionAbstract::__construct to ReflectionFunction - Move ReflectionFunctionAbstract::__toString to ReflectionFuncion - Delcare ReflectionFunctionAbstract::__toString abstract - fix couple of typos
* last portion of z/Z fixesAntony Dovgal2006-08-311-43/+45
|
* MFH: fix #38653 (memory leak in ReflectionClass::getConstant())Antony Dovgal2006-08-301-0/+2
|
* Improved fix for bug #38132Ilia Alshanetsky2006-07-261-11/+5
|
* MFH: fix bug #38217 (ReflectionClass::newInstanceArgs() tries to allocate ↵Antony Dovgal2006-07-261-9/+17
| | | | too much memory)
* - wsMichael Wallner2006-07-251-3/+3
|
* Fixed bug #38132 (ReflectionClass::getStaticProperties() retains \0 in keyIlia Alshanetsky2006-07-251-3/+28
| | | | | names).
* Fixed bug #38194 (ReflectionClass::isSubclassOf() returns TRUE for theIlia Alshanetsky2006-07-251-2/+1
| | | | | class itself).
* - MFH zend_unmangle_property_name(), drop zend_unmangle_property_name_ex()Marcus Boerger2006-07-241-4/+4
|
* - MFH Fixed bug #37816 (ReflectionProperty does not throw exception when ↵Marcus Boerger2006-07-101-11/+15
| | | | accessing protected attribute)
* - MFH Fix logicMarcus Boerger2006-07-091-1/+1
|
* MFH: ReflectionFunction::isDisabled()Hannes Magnusson2006-07-071-0/+14
|
* mfhHannes Magnusson2006-07-041-1/+1
|
* MFH: Fix protos&arginfoHannes Magnusson2006-07-041-6/+16
|
* - MFH Fix ReflectionObject::getProperties() + dyn propertiesMarcus Boerger2006-06-241-0/+27
|
* MFHHannes Magnusson2006-06-101-25/+36
| | | | | | | | | | | | - Created new abstract class, ReflectionFunctionAbstract implementing Reflector - Moved all methods from ReflectionFunction (except export, invoke & invokeArgs) - ReflectionFunction now inherits everything from ReflectionFunctionAbstract and implements its own export, invoke & invokeArgs methods - ReflectionMethod now extends ReflectionFunctionAbstract and implements its own export, invoke & invokeArgs methods. - Removed stdClass typehint from ReflectionClass::isInstance - Removed stdClass typehint from ReflectionClass::set/getValue
* - MFH Add arginfo (hannes)Marcus Boerger2006-06-071-35/+233
|
* - MFH Add ReflectionClass::getInterfaceNames()Marcus Boerger2006-06-071-0/+21
|
* - Use engine call to register interfaces (steph)Marcus Boerger2006-06-041-2/+1
|
* apply correct fixAntony Dovgal2006-06-011-2/+4
|
* MFH: no need to fetch trsm_ls when it's already availableAntony Dovgal2006-06-011-2/+0
|
* - Update after api changesMarcus Boerger2006-05-101-1/+1
|
* 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
|