PluginProbe
SQLite Database Integration / trunk
SQLite Database Integration vtrunk
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
← All changes | wp-includes/database/parser/class-wp-parser-token.php +3 -1 2.2.21trunk View file →
@@ -6,8 +6,10 @@
6 6 * This class represents a token that is consumed and recognized by WP_Parser.
7 7 * In a parse tree, a token represent a leaf, that is, a node without children.
8 8 * It is a simple generic container for a token ID and value, that can be used
9 9 * as a base class and extended for specific use cases.
10 + *
11 + * @access private
10 12 */
11 13 class WP_Parser_Token {
12 14 /**
13 15 * Token ID represented as an integer constant.
@@ -34,9 +36,9 @@
34 36 * Input bytes from which the token was parsed.
35 37 *
36 38 * @var string
37 39 */
38 - private $input;
40 + protected $input;
39 41
40 42 /**
41 43 * Constructor.
42 44 *