Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix incorrect argument reflection info for array_multisort() | Alexander Lisachenko | 2014-11-23 | 1 | -14/+2 |
| | |||||
* | Merge branch 'PHP-5.5' into PHP-5.6 | Johannes Schlüter | 2014-10-04 | 1 | -1/+1 |
|\ | |||||
| * | Fix accidental edit in previous commit | Johannes Schlüter | 2014-10-04 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.5' into PHP-5.6 | Johannes Schlüter | 2014-10-04 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix arginfo | Johannes Schlüter | 2014-10-04 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'PHP-5.5' into PHP-5.6 | Remi Collet | 2014-09-26 | 1 | -5/+20 |
|\ \ | |/ | | | | | | | | | * PHP-5.5: NEWS Fixed bug #68103 Dupplicate entry in Reflection | ||||
| * | Fixed bug #68103 Dupplicate entry in Reflection | Remi Collet | 2014-09-26 | 1 | -5/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | $ php -r '$r=new ReflectionExtension("pthreads"); print_r($r->getClassNames());' Array ( [0] => Threaded [1] => stackable [2] => Thread [3] => Worker [4] => Mutex [5] => Cond [6] => Collectable [7] => Pool ) In getClasses() output, it is possible to compare key (ex "stackable") with $obj->name (ex "Threaded") to detect class alias. ... [Threaded] => ReflectionClass Object ( [name] => Threaded ) [stackable] => ReflectionClass Object ( [name] => Threaded ) ... | ||||
* | | update the exception message to better match the actual check | Ferenc Kovacs | 2014-07-30 | 3 | -3/+3 |
| | | |||||
* | | ReflectionClass::newInstanceWithoutConstructor() should be allowed to ↵ | Ferenc Kovacs | 2014-07-30 | 3 | -4/+9 |
| | | | | | | | | instantiate every class except those internal classes with a final __construct() | ||||
* | | Fixed crash on self-referencing constant expression (part of a constant AST) | Dmitry Stogov | 2014-07-24 | 1 | -2/+11 |
| | | |||||
* | | Merge branch 'PHP-5.5' into PHP-5.6 | Stanislav Malyshev | 2014-06-08 | 3 | -3/+3 |
|\ \ | |/ | | | | | | | * PHP-5.5: Remove superfluous echos. | ||||
| * | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2014-06-08 | 3 | -3/+3 |
| |\ | | | | | | | | | | | | | * PHP-5.4: Remove superfluous echos. | ||||
| | * | Remove superfluous echos. | Jeff Welch | 2014-06-08 | 3 | -3/+3 |
| | | | |||||
* | | | Removed useless void* parameter and replaced with zend_bool on ↵ | Bob Weinand | 2014-04-11 | 1 | -3/+3 |
| | | | | | | | | | | | | zval_update_constant* functions | ||||
* | | | Merge branch 'PHP-5.5' into PHP-5.6 | Ferenc Kovacs | 2014-02-27 | 2 | -2/+2 |
|\ \ \ | |/ / | | | | | | | | | | * PHP-5.5: fix tests broken by 633f898f1520253d3530fe91fc82f68bca7c4627 | ||||
| * | | Merge branch 'PHP-5.4' into PHP-5.5 | Ferenc Kovacs | 2014-02-27 | 2 | -2/+2 |
| |\ \ | | |/ | | | | | | | | | | * PHP-5.4: fix tests broken by 633f898f1520253d3530fe91fc82f68bca7c4627 | ||||
| | * | fix tests broken by 633f898f1520253d3530fe91fc82f68bca7c4627 | Ferenc Kovacs | 2014-02-27 | 2 | -2/+2 |
| | | | |||||
| | * | Bump year | Xinchen Hui | 2014-01-03 | 2 | -2/+2 |
| | | | |||||
| * | | Bump year | Xinchen Hui | 2014-01-03 | 2 | -2/+2 |
| | | | |||||
* | | | Bump year | Xinchen Hui | 2014-01-03 | 2 | -2/+2 |
| | | | |||||
* | | | Merge branch 'PHP-5.5' into PHP-5.6 | Remi Collet | 2013-12-10 | 2 | -40/+47 |
|\ \ \ | |/ / | | | | | | | | | | | | | * PHP-5.5: NEWS Fixed Bug #66218 zend_register_functions breaks reflection | ||||
| * | | Merge branch 'PHP-5.4' into PHP-5.5 | Remi Collet | 2013-12-10 | 2 | -40/+47 |
| |\ \ | | |/ | | | | | | | | | | * PHP-5.4: Fixed Bug #66218 zend_register_functions breaks reflection | ||||
| | * | Fixed Bug #66218 zend_register_functions breaks reflection | Remi Collet | 2013-12-10 | 2 | -40/+47 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Functions registered using zend_register_functions instead of zend_module_entry.functions are not seen on reflection. Ex: additional_functions from api_module_entry. Ex: in CLI, dl, cli_set_process_title and cli_get_process_title Note: - also affects functions overrided in extension (should be be reported in extension, where overrided, not in original extension) - also allow extension to call zend_register_functions for various list (instead of having a single bug list) | ||||
* | | | converted several switches to ifs and made more opcache friendly | Bob Weinand | 2013-11-01 | 1 | -13/+4 |
| | | | |||||
* | | | Working commit for constant scalar expressions (with constants). | Bob Weinand | 2013-10-31 | 1 | -5/+13 |
| | | | | | | | | | | | | Tests will follow. | ||||
* | | | Implement variadic function syntax | Nikita Popov | 2013-09-26 | 5 | -3/+79 |
|/ / | | | | | | | As per RFC: https://wiki.php.net/rfc/variadics | ||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2013-08-04 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | | | | | | | * PHP-5.4: non living code related typo fixes Conflicts: Zend/zend_compile.c | ||||
| * | non living code related typo fixes | Veres Lajos | 2013-08-04 | 1 | -1/+1 |
| | | |||||
| * | typo fixes | Veres Lajos | 2013-07-15 | 1 | -1/+1 |
| | | |||||
* | | typo fixes | Veres Lajos | 2013-07-15 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Remi Collet | 2013-06-20 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | * PHP-5.4: skip test for bug #64936 when tokenizer not built | ||||
| * | skip test for bug #64936 when tokenizer not built | Remi Collet | 2013-06-20 | 1 | -0/+4 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2013-06-16 | 2 | -0/+39 |
|\ \ | |/ | | | | | | | | | | | | | | | | | | | * PHP-5.4: Fix bug #64936 - clean doc comment state at the beginning and end of the scan ws fix Conflicts: Zend/zend_language_scanner.c Zend/zend_language_scanner.l Zend/zend_language_scanner_defs.h | ||||
| * | Fix bug #64936 - clean doc comment state at the beginning and end of the scan | Stanislav Malyshev | 2013-06-16 | 2 | -0/+39 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2013-03-21 | 2 | -1/+46 |
|\ \ | |/ | |||||
| * | Fix bug in reflectionClass relate to #64239 | Xinchen Hui | 2013-03-21 | 2 | -1/+46 |
| | | |||||
| * | Happy New Year | Xinchen Hui | 2013-01-01 | 2 | -2/+2 |
| | | |||||
* | | Made test compatible with O+ | Dmitry Stogov | 2013-03-16 | 9 | -0/+27 |
| | | |||||
* | | Fix test related to change for #bug64007 and also fix in newInstanceArgs | Xinchen Hui | 2013-01-22 | 2 | -12/+28 |
| | | |||||
* | | Fixed bug #64007 (There is an ability to create instance of Generator by hand). | Xinchen Hui | 2013-01-19 | 2 | -8/+25 |
| | | | | | | | | Use get_constrctor instead of access of the ce->constructor directly | ||||
* | | Happy New Year | Xinchen Hui | 2013-01-01 | 2 | -2/+2 |
| | | |||||
* | | Merge branch 'PHP-5.4' into PHP-5.5 | Xinchen Hui | 2012-11-27 | 2 | -1/+42 |
|\ \ | |/ | |||||
| * | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2012-11-27 | 2 | -1/+42 |
| |\ | |||||
| | * | Fixed Bug #63614 (Fatal error on Reflection) | Xinchen Hui | 2012-11-27 | 2 | -1/+42 |
| | | | |||||
* | | | Merge branch 'PHP-5.4' | Xinchen Hui | 2012-10-31 | 3 | -4/+53 |
|\ \ \ | |/ / | |||||
| * | | Fixed bug #63399 (ReflectionClass::getTraitAliases() incorrectly resolves ↵ | Xinchen Hui | 2012-10-31 | 3 | -4/+53 |
| | | | | | | | | | | | | traitnames) | ||||
* | | | Merge branch 'PHP-5.4' | Xinchen Hui | 2012-10-10 | 53 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | Remove executable permission on phpt | Xinchen Hui | 2012-10-10 | 3 | -0/+0 |
| | | | |||||
| * | | Merge branch 'PHP-5.3' into PHP-5.4 | Xinchen Hui | 2012-10-10 | 50 | -0/+0 |
| |\ \ | | |/ | |||||
| | * | Remove executable permission on phpt | Xinchen Hui | 2012-10-10 | 50 | -0/+0 |
| | | |