summaryrefslogtreecommitdiff
path: root/scripts/dev/check_parameters.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-7.4'Nikita Popov2020-02-031-269/+269
|\ | | | | | | | | * PHP-7.4: Apply tidy formatting
| * Apply tidy formattingNikita Popov2020-02-031-269/+269
| | | | | | | | Mostly reindent PHP scripts to spaces.
| * Remove yearly range from copyright noticeZeev Suraski2019-01-301-1/+1
| |
* | Remove mention of PHP major version in Copyright headersGabriel Caruso2019-09-251-2/+0
| | | | | | | | Closes GH-4732.
* | Remove year range from copyright noticeZeev Suraski2019-01-301-1/+1
|/
* Make PHP development tools files and scripts executablePeter Kokot2018-08-291-0/+1
| | | | | | | | | | This patch makes several scripts and PHP development tools files executable and adds more proper shebangs to the PHP scripts. The `#!/usr/bin/env php` shebang provides running the script via `./script.php` and uses env to find PHP script location on the system. At the same time it still provides running the script with a user defined PHP location using `php script.php`.
* Remove unused Git attributes identPeter Kokot2018-07-251-3/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* Happy new year (Update copyright to 2018)Lior Kaplan2018-01-021-1/+1
|
* More check_parameters improvementsNikita Popov2015-10-021-23/+37
| | | | | | | | | * Switch default REPORT_LEVEL to 1 to cut down on the noise * Make initialization of 'C' variable always required * Don't require init of lLdb variable if ! is used * Don't throw error about missing init of not detected parameters (This was a regression in the last changeset) * Support method_parameters and throw variations
* More check_parameters improvementsNikita Popov2015-10-011-11/+23
| | | | | | | | * Allow / on everything but lLdb (on which it will work, but makes no sense). * For ! on lLdb add additional zend_bool* parameter. * For optional s and p only require one of the variables to be initialized. The length is usually not initialized.
* Update scripts/dev/check_parameters.php for PHP 7Sean DuBois2015-10-011-40/+22
| | | | | Also fix deprecation errors and move from preg_replace -> preg_replace_callback.
* s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
|
* Update copyright yearIlia Alshanetsky2007-01-011-1/+1
| | | | | # The rest of the files were already updated by Sebastian
* more improvementsAntony Dovgal2006-09-101-3/+8
|
* MFH: improve the scriptAntony Dovgal2006-09-101-1/+33
|
* add the script to run diagnostic tests on zend_parse_parameters*() usage, ↵Nuno Lopes2006-09-081-0/+336
per Andrei's request