Felipe Pena
f1967befc8
- Fix test
2011-05-14 01:00:59 +00:00
Gustavo André dos Santos Lopes
e15dd93e7e
- Simpler fix for bug #53915 .
2011-02-03 12:45:30 +00:00
Gustavo André dos Santos Lopes
9e71bff701
- Simpler fix for bug #53915 .
2011-02-03 12:45:30 +00:00
Gustavo André dos Santos Lopes
fac1e87171
- Fixed bug #53915 : ReflectionClass::getConstant(s) emits fatal error on
...
constants with self::.
- Reflown some NEWS entries to have lines no longer than 80 chars.
2011-02-03 12:38:25 +00:00
Gustavo André dos Santos Lopes
f2329f1f4b
- Fixed bug #53915 : ReflectionClass::getConstant(s) emits fatal error on
...
constants with self::.
- Reflown some NEWS entries to have lines no longer than 80 chars.
2011-02-03 12:38:25 +00:00
Felipe Pena
927bf09c29
- Year++
2011-01-01 02:19:59 +00:00
Felipe Pena
0203cc3d44
- Year++
2011-01-01 02:17:06 +00:00
Scott MacVicar
6144da7e35
Silently casting an empty string, null or false into an object by adding a property
...
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.
Since we can't break BC completely (yet) lets bump this from E_STRICT.
Also added a new section to UPGRADING for engine changes.
<?php
$x = '';
// $x = null;
// $x = false;
$x->baz = 1;
var_dump($x);
$y = 1;
$y->baz = 1;
var_dump($y);
2010-12-31 16:57:45 +00:00
Johannes Schlüter
dabb79bf3d
- Improve test
2010-11-21 12:28:10 +00:00
Johannes Schlüter
ac4f3422bc
- Improve test
2010-11-21 12:28:10 +00:00
Johannes Schlüter
5a1e9d1d6b
- Fix #52854 (ReflectionClass::newInstanceArgs does not work for classes without constructors
2010-11-21 12:24:09 +00:00
Johannes Schlüter
9ea04e1e46
- Fix #52854 (ReflectionClass::newInstanceArgs does not work for classes without constructors
2010-11-21 12:24:09 +00:00
Felipe Pena
224bfb38f7
- Fixed bug #53366 (Reflection doesnt get dynamic property value from getProperty())
2010-11-20 22:53:55 +00:00
Felipe Pena
1ac484d1a1
- Fixed bug #53366 (Reflection doesnt get dynamic property value from getProperty())
2010-11-20 22:53:55 +00:00
Kalle Sommer Nielsen
063b213e9e
Kill warnings about constness
2010-11-19 15:48:11 +00:00
Gustavo André dos Santos Lopes
b5b4f94a4c
- Fixed ReflectionProperty::isDefault() giving a wrong result for properties
...
obtained with ReflectionClass::getProperties().
2010-10-26 18:47:10 +00:00
Gustavo André dos Santos Lopes
be77a48a71
- Fixed ReflectionProperty::isDefault() giving a wrong result for properties
...
obtained with ReflectionClass::getProperties().
2010-10-26 18:47:10 +00:00
Gustavo André dos Santos Lopes
e5c7fae82c
- Added ReflectionParameter::canBePassedByValue().
2010-10-26 15:01:36 +00:00
Dmitry Stogov
f2df6a4a3e
- Improved memory usage
...
. 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.
2010-09-15 07:38:52 +00:00
Felipe Pena
03df7fce82
- Fixed test
2010-09-09 21:46:29 +00:00
Felipe Pena
264d65bd6e
- Fixed test
2010-09-09 21:46:29 +00:00
Felipe Pena
da3743b7b9
- Added missing void parameter checks
2010-08-21 16:09:18 +00:00
Felipe Pena
76862dfd0c
- Added missing void parameter checks
2010-08-21 16:09:18 +00:00
Felipe Pena
a552a30192
- Added missing parameter checks for new methods (trunk only)
2010-08-02 01:35:02 +00:00
Felipe Pena
cb1d315b7d
- Fix tests
2010-07-31 22:10:43 +00:00
Felipe Pena
6944a24328
- Makes "parent" and "self" checking case-insensitive
2010-07-29 01:59:40 +00:00
Felipe Pena
ce72f33674
- Fixed tests
2010-07-06 00:25:52 +00:00
Felipe Pena
4d3944f941
- Fixed bug #52057 (ReflectionClass fails on Closure class)
2010-06-11 23:37:55 +00:00
Felipe Pena
becc2bb671
- Fixed bug #52057 (ReflectionClass fails on Closure class)
2010-06-11 23:37:55 +00:00
Felipe Pena
8454cca44c
- Fix memleak when passing a non string/object parameter
2010-06-03 00:43:37 +00:00
Felipe Pena
dc86e9e89f
- Fix memleak when passing a non string/object parameter
2010-06-03 00:14:35 +00:00
Felipe Pena
f10c7890c2
- Fix test
2010-06-03 00:13:27 +00:00
Felipe Pena
e03baf4e5d
- Save an object_init_ex() and zval_dtor() calls on ReflectionClass::isCloneable()
2010-06-02 17:07:01 +00:00
Felipe Pena
c98c39b1c1
- Added ReflectionClass::isCloneable() [DOC]
2010-06-02 15:29:42 +00:00
Johannes Schlüter
4158f7e122
- More trait reflection work
...
#- I'm not happy about ReflectionClass::getTraitAliases, yet
2010-05-30 01:00:45 +00:00
Felipe Pena
2d63683ec3
- Fixed ReflectionClass::isTrait() checking (to not identify abstract class as Trait)
2010-05-29 22:08:51 +00:00
Felipe Pena
23dfc1fa9d
- Missing Trait check fix
2010-05-29 21:55:19 +00:00
Felipe Pena
3c4ff06ca7
- Fixed wrong abstract class identification (it was identified as a Trait)
2010-05-29 21:48:56 +00:00
Johannes Schlüter
97b7620aed
- Add some folding marks
2010-05-29 21:28:24 +00:00
Johannes Schlüter
19afc82e28
- Make reflection aware of traits
2010-05-29 20:40:58 +00:00
Johannes Schlüter
1afd50766c
- Fix tests
2010-05-29 20:34:25 +00:00
Kalle Sommer Nielsen
49d74ebc6e
Fixed compiler warning (pointer mismatch)
2010-05-27 23:24:06 +00:00
Pierrick Charron
0b9263da93
Remove unused variable
2010-05-26 16:17:15 +00:00
Felipe Pena
c4be9c3890
- Fixed bug #51905 (ReflectionParameter fails if default value is an array with an access to self::)
2010-05-26 00:00:58 +00:00
Felipe Pena
79d2aaf0f1
- Fixed bug #51905 (ReflectionParameter fails if default value is an array with an access to self::)
2010-05-26 00:00:58 +00:00
Felipe Pena
f3009cb596
- Fixed bug #51911 (ReflectionParameter::getDefaultValue() memory leaks with constant array)
2010-05-25 22:46:17 +00:00
Felipe Pena
1168cdc323
- Fixed bug #51911 (ReflectionParameter::getDefaultValue() memory leaks with constant array)
2010-05-25 22:46:17 +00:00
Dmitry Stogov
f23e857676
Fixed ZTS build
2010-05-24 17:07:52 +00:00
Dmitry Stogov
c5237d82bf
Added caches to eliminate repeatable run-time bindings of functions, classes, constants, methods and properties
2010-05-24 14:11:39 +00:00
Derick Rethans
1bc9247651
- Added scalar typehinting.
2010-05-20 19:18:35 +00:00