summaryrefslogtreecommitdiff
path: root/ext/reflection
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed tests not passing under windows because of the directory separatorPatrick Allaert2010-11-081-2/+2
| | | | | difference (thanks Eyal Teutsch for reporting)
* - Fixed testsFelipe Pena2010-07-063-11/+3
|
* - Fix memleak when passing a non string/object parameterFelipe Pena2010-06-031-1/+1
|
* - Fixed bug #51905 (ReflectionParameter fails if default value is an array ↵Felipe Pena2010-05-261-0/+28
| | | | with an access to self::)
* - Fixed bug #51911 (ReflectionParameter::getDefaultValue() memory leaks with ↵Felipe Pena2010-05-252-1/+23
| | | | constant array)
* - Fixed tests Felipe Pena2010-03-061-4/+6
|
* - The ctor requires both argumentsHannes Magnusson2010-03-021-2/+4
| | | | | - Sync/fix ctor and export arguments to 5_2
* - Fixed bug #50823 (ReflectionFunction::isDeprecated producing "cannot be ↵Jani Taskinen2010-01-221-62/+62
| | | | | | | called statically" error) # Partial MF53 of r273045 by Felipe :)
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-032-2/+2
|
* - Fixed bug #49719 (ReflectionClass::hasProperty returns true for a private ↵Felipe Pena2009-11-013-4/+37
| | | | property in base class)
* Make invokeArgs() error messages consistent with invoke().Sebastian Bergmann2009-09-032-5/+5
|
* More tests from 2009 testfestZoe Slattery2009-08-301-0/+15
|
* Test from 2009 testfestZoe Slattery2009-08-263-0/+74
|
* - Fixed ReflectionClass::getStaticProperties() to do not return the private ↵Felipe Pena2009-08-014-19/+14
| | | | | | | properties from parent class; behavior already adopted in ReflectionClass::getDefaultProperties() and ReflectionClass::getProperties().
* - Added test for bug #49074Jani Taskinen2009-08-011-0/+35
|
* - Fixed bug #49074 (private class static fields can be modified by using ↵Jani Taskinen2009-08-011-2/+7
| | | | reflection)
* Fixed #45280 (Reflection of instantiated COM classes causes PHP to crash) ↵Kalle Sommer Nielsen2009-07-011-11/+13
| | | | (Paul Richards, Kalle)
* Fix testsandy wharmby2009-06-292-7/+11
|
* MFH: Fixed bug #48336 (ReflectionProperty::getDeclaringClass() does notArnaud Le Blanc2009-05-212-0/+48
| | | | | | work with redeclared property) (patch by Markus dot Lidel at shadowconnect dot com)
* - SPL can be disabled in PHP_5_2Jani Taskinen2009-05-021-1/+1
|
* - MFH: Fixed bug #47254 (Wrong Reflection for extends class)Felipe Pena2009-04-279-395/+396
|
* MFH: Rename reflection*.phpt to Reflection*.phpt for consistency.Sebastian Bergmann2009-04-0886-2/+2
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-312-2/+2
|
* Reflection tests: checked on PHP 5.2.6, 5.3 and 6.0 (Windows, Linux and ↵Ant Phillips2008-11-1856-0/+4908
| | | | Linux 64 bit).
* Commit tests for ext/reflectionAnt Phillips2008-11-1723-0/+772
|
* - MFH: Fixed bug #46064 (Exception when creating ReflectionProperty object ↵Felipe Pena2008-10-293-14/+199
| | | | on dynamicly created property)
* - Fixed segmentation fault (test added)Christian Seiler2008-08-112-1/+32
|
* - MFH: Fixed bug #45765 (ReflectionObject with default parameters of ↵Felipe Pena2008-08-112-1/+83
| | | | self::xxx cause an error)
* - Fixed bug #45139 (ReflectionProperty returns incorrect declaring class)Felipe Pena2008-06-012-1/+59
|
* MFH: Add tests for ReflectionFunction::getExtension*().Sebastian Bergmann2008-05-112-0/+35
|
* Fixed bug #43677 (Inconsistent behaviour of include_path set withIlia Alshanetsky2008-03-131-1/+1
| | | | | php_value).
* Made code opcode-cache friendly. (It is disallowed to change code during ↵Dmitry Stogov2008-02-181-5/+6
| | | | execution)
* Adding PHPT tests for the ReflectionMethod class.Steve Seear2008-01-0318-0/+1928
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-312-2/+2
|
* Adding PHPT tests for the ReflectionProperty class.Steve Seear2007-12-1813-0/+917
|
* MFB: Fixed bug #42976 (Crash when constructor for newInstance() orIlia Alshanetsky2007-10-282-4/+42
| | | | | newInstanceArgs() fails)
* 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-242-0/+51
| | | | | for an extension. [DOC]
* Avoid endless loopHannes Magnusson2007-07-231-0/+2
|
* reflectionObject testsZoe Slattery2007-07-1224-0/+868
|
* MFHAntony Dovgal2007-07-112-24/+57
|
* More reflectionClass testsZoe Slattery2007-07-1115-0/+457
|
* MFH: fix copy/paste type and bug #41962Antony Dovgal2007-07-111-1/+1
|
* tests for reflectionClassZoe Slattery2007-07-108-0/+326
|
* ReflectionClass constructor testsZoe Slattery2007-07-092-0/+100
|
* - 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 testsAntony Dovgal2007-04-261-0/+2
|