Framework updates
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
4
node_modules/php-parser/src/lexer/attribute.js
generated
vendored
4
node_modules/php-parser/src/lexer/attribute.js
generated
vendored
@@ -9,10 +9,10 @@ module.exports = {
|
||||
attributeIndex: 0,
|
||||
attributeListDepth: {},
|
||||
matchST_ATTRIBUTE() {
|
||||
let ch = this.input();
|
||||
const ch = this.input();
|
||||
if (this.is_WHITESPACE()) {
|
||||
do {
|
||||
ch = this.input();
|
||||
this.input();
|
||||
} while (this.is_WHITESPACE());
|
||||
this.unput(1);
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user