| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | - Missing fix for bug #54347 | Felipe Pena | 2011-06-11 | 1 | -2/+7 |
| | | |||||
| * | - Fixed bug #54347 (reflection_extension does not lowercase module function ↵ | Felipe Pena | 2011-06-09 | 1 | -1/+6 |
| | | | | | | | | name) patch by: laruence at yahoo dot com dot cn | ||||
| * | This method doesn't seem to be very useful without scalar types, so ↵ | Stanislav Malyshev | 2011-06-05 | 1 | -21/+0 |
| | | | | | reverting it too | ||||
| * | removing scalar types in trunk | Stanislav Malyshev | 2011-05-15 | 1 | -245/+143 |
| | | |||||
| * | - Simpler fix for bug #53915. | Gustavo André dos Santos Lopes | 2011-02-03 | 1 | -7/+2 |
| | | |||||
| * | - Fixed bug #53915: ReflectionClass::getConstant(s) emits fatal error on | Gustavo André dos Santos Lopes | 2011-02-03 | 1 | -2/+7 |
| | | | | | | | constants with self::. - Reflown some NEWS entries to have lines no longer than 80 chars. | ||||
| * | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | | |||||
| * | - Fix #52854 (ReflectionClass::newInstanceArgs does not work for classes ↵ | Johannes Schlüter | 2010-11-21 | 1 | -1/+1 |
| | | | | | without constructors | ||||
| * | - Fixed bug #53366 (Reflection doesnt get dynamic property value from ↵ | Felipe Pena | 2010-11-20 | 1 | -2/+11 |
| | | | | | getProperty()) | ||||
| * | Kill warnings about constness | Kalle Sommer Nielsen | 2010-11-19 | 1 | -10/+10 |
| | | |||||
| * | - Fixed ReflectionProperty::isDefault() giving a wrong result for properties | Gustavo André dos Santos Lopes | 2010-10-26 | 1 | -0/+1 |
| | | | | | obtained with ReflectionClass::getProperties(). | ||||
| * | - Added ReflectionParameter::canBePassedByValue(). | Gustavo André dos Santos Lopes | 2010-10-26 | 1 | -0/+18 |
| | | |||||
| * | - Improved memory usage | Dmitry Stogov | 2010-09-15 | 1 | -19/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | . zend_function.pass_rest_by_reference is replaced by ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags . zend_function.return_reference is replaced by ZEND_ACC_RETURN_REFERENCE in zend_function.fn_flags . zend_arg_info.required_num_args removed. it was needed only for internal functions. Now the first arg_info for internal function (which has special meaning) is represented by zend_internal_function_info structure. . zend_op_array.size, size_var, size_literal, current_brk_cont, backpatch_count moved into CG(context), because they are used only during compilation. . zend_op_array.start_op is moved into EG(start_op), because it's used only for 'interactive' execution of single top-level op-array. . zend_op_array.done_pass_two is replaced by ZEND_ACC_DONE_PASS_TWO in zend_op_array.fn_flags. . op_array.vars array is trimmed (reallocated) during pass_two. . zend_class_entry.constants_updated is replaced by ZEND_ACC_CONSTANTS_UPDATED in zend_class_entry.ce_flags . the size of zend_class_entry is reduced by sharing the same memory space by different information for internal and user classes. See zend_class_inttry.info union. | ||||
| * | - Added missing void parameter checks | Felipe Pena | 2010-08-21 | 1 | -0/+20 |
| | | |||||
| * | - Added missing parameter checks for new methods (trunk only) | Felipe Pena | 2010-08-02 | 1 | -0/+21 |
| | | |||||
| * | - Makes "parent" and "self" checking case-insensitive | Felipe Pena | 2010-07-29 | 1 | -2/+2 |
| | | |||||
| * | - Fixed bug #52057 (ReflectionClass fails on Closure class) | Felipe Pena | 2010-06-11 | 1 | -1/+12 |
| | | |||||
| * | - Fix memleak when passing a non string/object parameter | Felipe Pena | 2010-06-03 | 1 | -1/+1 |
| | | |||||
| * | - Save an object_init_ex() and zval_dtor() calls on ↵ | Felipe Pena | 2010-06-02 | 1 | -4/+4 |
| | | | | | ReflectionClass::isCloneable() | ||||
| * | - Added ReflectionClass::isCloneable() [DOC] | Felipe Pena | 2010-06-02 | 1 | -0/+34 |
| | | |||||
| * | - More trait reflection work | Johannes Schlüter | 2010-05-30 | 1 | -0/+77 |
| | | | | | | #- I'm not happy about ReflectionClass::getTraitAliases, yet | ||||
| * | - Fixed ReflectionClass::isTrait() checking (to not identify abstract class ↵ | Felipe Pena | 2010-05-29 | 1 | -1/+1 |
| | | | | | as Trait) | ||||
| * | - Missing Trait check fix | Felipe Pena | 2010-05-29 | 1 | -1/+1 |
| | | |||||
| * | - Fixed wrong abstract class identification (it was identified as a Trait) | Felipe Pena | 2010-05-29 | 1 | -1/+1 |
| | | |||||
| * | - Add some folding marks | Johannes Schlüter | 2010-05-29 | 1 | -11/+26 |
| | | |||||
| * | - Make reflection aware of traits | Johannes Schlüter | 2010-05-29 | 1 | -1/+18 |
| | | |||||
| * | Fixed compiler warning (pointer mismatch) | Kalle Sommer Nielsen | 2010-05-27 | 1 | -1/+1 |
| | | |||||
| * | Remove unused variable | Pierrick Charron | 2010-05-26 | 1 | -1/+0 |
| | | |||||
| * | - Fixed bug #51911 (ReflectionParameter::getDefaultValue() memory leaks with ↵ | Felipe Pena | 2010-05-25 | 1 | -1/+1 |
| | | | | | constant array) | ||||
| * | Fixed ZTS build | Dmitry Stogov | 2010-05-24 | 1 | -1/+1 |
| | | |||||
| * | Added caches to eliminate repeatable run-time bindings of functions, ↵ | Dmitry Stogov | 2010-05-24 | 1 | -106/+105 |
| | | | | | classes, constants, methods and properties | ||||
| * | - Added scalar typehinting. | Derick Rethans | 2010-05-20 | 1 | -4/+106 |
| | | |||||
| * | Changed the structure of op_array.opcodes. The constant values are moved ↵ | Dmitry Stogov | 2010-04-20 | 1 | -11/+11 |
| | | | | | from opcode operands into a separate literal table | ||||
| * | restore $this support for closures to its former glory | Stanislav Malyshev | 2010-04-19 | 1 | -3/+83 |
| | | |||||
| * | Remove main/php3_compat.h, for that a few references to `function_entry` have | Johannes Schlüter | 2010-03-30 | 1 | -5/+0 |
| | | | | | | to be replaced by `zend_function_entry`. | ||||
| * | Fix protos | Johannes Schlüter | 2010-03-30 | 1 | -2/+2 |
| | | |||||
| * | Add ReflectionZendExtension class and --rz option to CLI | Johannes Schlüter | 2010-03-30 | 1 | -0/+188 |
| | | |||||
| * | Fix folding | Johannes Schlüter | 2010-03-30 | 1 | -1/+1 |
| | | |||||
| * | Use php_error_docref instead of zend_error | Johannes Schlüter | 2010-03-30 | 1 | -11/+11 |
| | | |||||
| * | Add ReflectionExtension::isTemporary() and ReflectionExtension::isPersistent(). | Johannes Schlüter | 2010-03-30 | 1 | -0/+34 |
| | | |||||
| * | - The ctor requires both arguments | Hannes Magnusson | 2010-03-02 | 1 | -1/+1 |
| | | | | | | - Sync/fix ctor and export arguments to 5_2 | ||||
| * | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
| | | |||||
| * | - Added MAKE_COPY_ZVAL(ppzv, pzv) macro | Felipe Pena | 2009-12-08 | 1 | -18/+6 |
| | | |||||
| * | - Fixed bug #50152 (ReflectionClass::hasProperty hehaves like isset() not ↵ | Felipe Pena | 2009-11-11 | 1 | -1/+1 |
| | | | | | | | | property_exists) [5_2 is OK] | ||||
| * | - Fixed bug #49719 (ReflectionClass::hasProperty returns true for a private ↵ | Felipe Pena | 2009-11-01 | 1 | -3/+6 |
| | | | | | property in base class) | ||||
| * | - Fix some arginfos (thanks Philip) | Felipe Pena | 2009-10-03 | 1 | -106/+111 |
| | | | | | | - Added arginfo info. for void params | ||||
| * | Merge ReflectionMethod::setAccessible() to PHP 5.3.2, approved by Johannes. | Sebastian Bergmann | 2009-09-16 | 1 | -12/+45 |
| | | |||||
| * | Make invokeArgs() error messages consistent with invoke(). | Sebastian Bergmann | 2009-09-03 | 1 | -3/+3 |
| | | |||||
| * | - Fixed ReflectionClass::getStaticProperties() to do not return the private ↵ | Felipe Pena | 2009-08-01 | 1 | -6/+9 |
| | | | | | | | | properties from parent class; behavior already adopted in ReflectionClass::getDefaultProperties() and ReflectionClass::getProperties(). | ||||
| * | - Fixed bug #49092 (ReflectionFunction fails to work with functions in fully ↵ | Jani Taskinen | 2009-08-01 | 1 | -1/+11 |
| | | | | | qualified namespaces) | ||||
