summaryrefslogtreecommitdiff
path: root/ext/pdo/tests/pdo_029.phpt
Commit message (Collapse)AuthorAgeFilesLines
* Use zpp for PDO fetch modeNikita Popov2020-07-201-1/+1
| | | | | | Also changing the function signatures to accept variadic args for the fetch params. If we're already breaking Doctrine anyway, we may as well do it properly.
* Reindent phpt filesNikita Popov2020-02-031-12/+12
|
* Replace dirname(__FILE__) by __DIR__ in testsFabien Villepinte2019-03-151-1/+1
|
* Remove local variablesPeter Kokot2019-02-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Trim trailing whitespace in testsGabriel Caruso2018-10-141-6/+6
|
* Remove executable permission on phptXinchen Hui2012-10-101-0/+0
|
* - Fixed bug #42452 (PDO classes do not expose Reflection API information)Hannes Magnusson2007-08-301-1/+1
| | | | | - Fixed tests
* Destructors call order is changed (Fixed bug #36759 - Objects destructors ↵Dmitry Stogov2006-07-121-1/+1
| | | | are invoked in wrong order when script is finished)
* - MFH change require to require_onceMarcus Boerger2005-10-031-1/+1
|
* - MFH Fixed Bug #34590 User defined PDOStatement class can't implementMarcus Boerger2005-09-211-0/+125
methods - Reimplement Traversable interface # If there is a problem with this i need a backtrace. As far as i can # tell by gdb/valgrind/logic there is no error here. But missuse leads to # the same error report casing the exclusion of interface Traversable.