Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'PHP-7.0' of https://github.com/php/php-src into PHP-7.0 | Joe Watkins | 2016-01-20 | 2 | -2/+2 |
|\ | |||||
| * | Merge branch 'PHP-5.6' into PHP-7.0 | Lior Kaplan | 2016-01-01 | 2 | -2/+2 |
| |\ | | | | | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) | ||||
| | * | Happy new year (Update copyright to 2016) | Lior Kaplan | 2016-01-01 | 2 | -2/+2 |
| | | | |||||
* | | | fix ReflectionClass::__toString doc block omitted | Joe Watkins | 2016-01-20 | 1 | -1/+1 |
|/ / | |||||
* | | Remove useless check | Xinchen Hui | 2015-12-09 | 1 | -34/+3 |
| | | |||||
* | | Fixed bug #71018 (ReflectionProperty::setValue() behavior changed) | Xinchen Hui | 2015-12-04 | 3 | -23/+51 |
| | | |||||
* | | Fixed test | Xinchen Hui | 2015-11-27 | 1 | -1/+1 |
| | | |||||
* | | Fixed bug #70982 (setStaticPropertyValue behaviors inconsistently with 5.6) | Xinchen Hui | 2015-11-27 | 2 | -0/+23 |
| | | |||||
* | | Merge branch 'PHP-5.6' into PHP-7.0 | Xinchen Hui | 2015-11-24 | 1 | -0/+10 |
|\ \ | |/ | |||||
| * | Fixed bug #70960 (ReflectionFunction for array_unique returns wrong number ↵ | Xinchen Hui | 2015-11-24 | 1 | -0/+10 |
| | | | | | | | | of parameters) | ||||
* | | Merge branch 'PHP-5.6' into PHP-7.0 | Xinchen Hui | 2015-11-23 | 1 | -0/+44 |
|\ \ | |/ | |||||
| * | Add bug #70957 and #70958 releated test in refection | Xinchen Hui | 2015-11-23 | 1 | -0/+44 |
| | | |||||
| * | Fixed the third one of (segfault in gc_remove_from_buffer()) | Xinchen Hui | 2015-10-03 | 1 | -9/+15 |
| | | | | | | | | | | This one maybe only used in debug mode, so no bug report and no test script provided | ||||
| * | Fixed bug #70631 (Another Segfault in gc_remove_from_buffer()) | Xinchen Hui | 2015-10-03 | 1 | -1/+29 |
| | | |||||
| * | Merge branch 'PHP-5.5' into PHP-5.6 | Stanislav Malyshev | 2015-01-31 | 1 | -0/+18 |
| |\ | | | | | | | | | | | | | * PHP-5.5: Added test and possible fix for https://bugs.php.net/bug.php?id=67068 | ||||
| | * | Added test and possible fix for https://bugs.php.net/bug.php?id=67068 | Danack | 2015-01-31 | 1 | -0/+18 |
| | | | |||||
| | * | Bump year | Xinchen Hui | 2015-01-15 | 2 | -2/+2 |
| | | | |||||
| * | | bump year | Xinchen Hui | 2015-01-15 | 2 | -2/+2 |
| | | | |||||
* | | | Fixed typo in reflection phpt | James Titcumb | 2015-11-07 | 1 | -1/+1 |
| | | | |||||
* | | | Indents | Xinchen Hui | 2015-10-23 | 1 | -120/+120 |
| | | | |||||
* | | | Fix boolean conversion warnings | c9s | 2015-10-23 | 1 | -10/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: The compiler complains and raised some warnings about boolean conversion: warning: address of 'ce->constants_table' will always evaluate to 'true' [-Wpointer-bool-conversion] Since the address of 'HashTable' will always evaluate to true. the condition should be removed. The scope is kept for local variables. Platform: OS X 10.11 Compiler: Apple LLVM version 7.0.0 (clang-700.0.72) Target: x86_64-apple-darwin15.0.0 Thread model: posix | ||||
* | | | Do not create a fake Closure for real Closures | Bob Weinand | 2015-10-14 | 1 | -1/+6 |
| | | | | | | | | | | | | That is solved by just returning the Closure as is, which is safe due to Closures being immutable objects | ||||
* | | | Move the tests to proper place | Xinchen Hui | 2015-10-14 | 2 | -0/+0 |
| | | | |||||
* | | | Forbid "fake" closure rebinding | Dmitry Stogov | 2015-10-12 | 1 | -3/+3 |
| | | | |||||
* | | | Fixed bug #70674 (ReflectionFunction::getClosure() leaks memory when used ↵ | Dmitry Stogov | 2015-10-09 | 1 | -0/+8 |
| | | | | | | | | | | | | for internal functions) | ||||
* | | | Fix bug #70650 | Márcio Almada | 2015-10-07 | 1 | -0/+41 |
| | | | |||||
* | | | Add test for ReflectionMethod::getPrototype_basic() | marcosptf | 2015-09-02 | 1 | -0/+29 |
| | | | |||||
* | | | Fix bogus traces with ReflectionGenerator::getTrace() | Bob Weinand | 2015-08-20 | 3 | -2/+63 |
| | | | |||||
* | | | Get rid of implicit type casting in GC_*() macros in Zend/zend_types.h. | Dmitry Stogov | 2015-08-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | This prevented compilation warnings and disclosed few incorrect usages in Zend/zend_vm_def.h and ext/dom/xpath.c. Now explicit type casting may be required on call site. This may break some C extension code, but it shoulfn't be a problem to add explicit casting. | ||||
* | | | Don't leak generator cycle in ReflectionGenerator test | Nikita Popov | 2015-07-03 | 1 | -1/+1 |
| | | | | | | | | | | | | This is tracked by bug #69989. | ||||
* | | | Switch position of ce in exception ce variable names | Aaron Piotrowski | 2015-07-03 | 1 | -1/+1 |
| | | | |||||
* | | | Change zend_exception_get_default() to zend_exception_ce | Aaron Piotrowski | 2015-07-03 | 1 | -1/+1 |
| | | | |||||
* | | | Use ZSTR_ API to access zend_string elements (this is just renaming without ↵ | Dmitry Stogov | 2015-06-30 | 1 | -107/+107 |
| | | | | | | | | | | | | semantick changes). | ||||
* | | | Fix more proto comments | Rasmus Lerdorf | 2015-06-23 | 1 | -2/+2 |
| | | | |||||
* | | | Merge branch 'pull-request/1284' | Anatol Belski | 2015-06-17 | 15 | -25/+25 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * pull-request/1284: Rename interface macros Fix typo in UPGRADING Move definition of Throwable to zend_exceptions.h/c Check for zend_ce_throwable instead Fix some missed tests Add Throwable tests Fix previous exception type check Updated UPGRADING with RFC link Changed AssertionException to AssertionError Update exception error messages Throwable method signatures. Update exception names in tests after formatting changes. Merge exception formatting changes. Make zend_get_exception_base static. Fix a few missed tests. Fix handler double copy. Updated tests to reflect exception class changes. Remodel exceptions based on Throwable interface | ||||
| * | | | Changed AssertionException to AssertionError | Aaron Piotrowski | 2015-06-14 | 1 | -1/+1 |
| | | | | |||||
| * | | | Merge branch 'master' into throwable-interface | Aaron Piotrowski | 2015-06-14 | 5 | -15/+417 |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Zend/zend_language_scanner.c # Zend/zend_language_scanner.l # ext/simplexml/tests/SimpleXMLElement_xpath.phpt | ||||
| * \ \ \ | Merge branch 'master' into throwable-interface | Aaron Piotrowski | 2015-05-18 | 1 | -1/+1 |
| |\ \ \ \ | |||||
| * | | | | | Update exception names in tests after formatting changes. | Aaron Piotrowski | 2015-05-17 | 7 | -7/+7 |
| | | | | | | |||||
| * | | | | | Merge branch 'master' into throwable-interface | Aaron Piotrowski | 2015-05-17 | 14 | -20/+24 |
| |\ \ \ \ \ | |||||
| * \ \ \ \ \ | Merge branch 'master' into throwable-interface | Aaron Piotrowski | 2015-05-17 | 1 | -1/+1 |
| |\ \ \ \ \ \ | |||||
| * | | | | | | | Updated tests to reflect exception class changes. | Aaron Piotrowski | 2015-05-16 | 13 | -23/+23 |
| | | | | | | | | |||||
* | | | | | | | | Drop now superflous check for VIA_TRAMPOLINE | Nikita Popov | 2015-06-16 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is not handled by USE_ARG_INFO. | ||||
* | | | | | | | | Fixed bug #69802 (Reflection on Closure::__invoke borks type hint class ↵ | Dmitry Stogov | 2015-06-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | name) (onr more problem) | ||||
* | | | | | | | | Complete fix for problems related to bug #69802 | Dmitry Stogov | 2015-06-16 | 1 | -13/+17 |
| | | | | | | | | |||||
* | | | | | | | | Fixed bug #69802 (Reflection on Closure::__invoke borks type hint class name) | Dmitry Stogov | 2015-06-15 | 1 | -2/+6 |
| | | | | | | | | |||||
* | | | | | | | | Rmoved opcache.load_comments. | Dmitry Stogov | 2015-06-15 | 10 | -10/+0 |
| |_|_|_|/ / / |/| | | | | | | |||||
* | | | | | | | Get rid of more ZVAL_ZVAL() macros | Dmitry Stogov | 2015-06-12 | 1 | -4/+7 |
| | | | | | | | |||||
* | | | | | | | Avoid zval duplication in ZVAL_ZVAL() macro (it was necessary only in few ↵ | Dmitry Stogov | 2015-06-12 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | places). Switch from ZVAL_ZVAL() to simpler macros where possible (it makes sense to review remaining places) | ||||
* | | | | | | | Reflection support for type hints and return types | Matteo Beccati | 2015-06-08 | 6 | -113/+312 |
| | | | | | | |