PluginProbe
SQLite Database Integration / 3.0.1
SQLite Database Integration v3.0.1
3.0.2 3.0.1 trunk 2.1.13 2.1.14 2.1.15 2.1.16 2.2.0 2.2.1 2.2.10 2.2.11 2.2.12 2.2.13 2.2.14 2.2.15 2.2.16 2.2.17 2.2.18 2.2.19 2.2.2 2.2.20 2.2.21 2.2.22 2.2.23 2.2.3 All 32 releases
sqlite-database-integration / wp-includes / database / mysql / native / class-wp-mysql-parser.php

class-wp-mysql-parser.php in SQLite Database Integration 3.0.1, at wp-includes/database/mysql/native/class-wp-mysql-parser.php

17 lines 505 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Native-mode public parser entry point.
5 *
6 * Always extends the pure-PHP `WP_Parser` so `$parser instanceof WP_Parser`
7 * keeps working for callers regardless of whether the Rust extension is
8 * loaded. The actual parsing work is delegated to a composed
9 * `WP_MySQL_Native_Parser` instance via the `WP_MySQL_Native_Parser_Impl`
10 * trait — see that file for the per-method delegation.
11 *
12 * @access private
13 */
14 class WP_MySQL_Parser extends WP_Parser {
15 use WP_MySQL_Native_Parser_Impl;
16 }
17