File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 4040 * the token arrays returned by this class.
4141 *
4242 * @since 1.0.0
43+ *
44+ * @method static array blockOpeners() Tokens that open code blocks.
45+ * @method static array booleanOperators() Tokens that perform boolean operations.
46+ * @method static array bracketTokens() Tokens that represent brackets and parenthesis.
47+ * @method static array castTokens() Tokens that represent type casting.
48+ * @method static array commentTokens() Tokens that are comments.
49+ * @method static array emptyTokens() Tokens that don't represent code.
50+ * @method static array equalityTokens() Tokens that represent equality comparisons.
51+ * @method static array heredocTokens() Tokens that make up a heredoc string.
52+ * @method static array includeTokens() Tokens that include files.
53+ * @method static array methodPrefixes() Tokens that can prefix a method name.
54+ * @method static array scopeModifiers() Tokens that represent scope modifiers.
55+ * @method static array scopeOpeners() Tokens that are allowed to open scopes.
56+ * @method static array stringTokens() Tokens that represent strings.
57+ * Note that `T_STRINGS` are NOT represented in this list as this list
58+ * is about _text_ strings.
4359 */
4460class BCTokens
4561{
You can’t perform that action at this time.
0 commit comments