Skip to content

Commit 0f503a7

Browse files
authored
fix PHP Deprecated: Creation of dynamic property (#158)
avoid the following error in php 8.2.* : PHP Deprecated: Creation of dynamic property cli\arguments\Lexer::$_item is deprecated in wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php on line 113
1 parent f6be76b commit 0f503a7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/cli/arguments/Lexer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use cli\Memoize;
1616

1717
class Lexer extends Memoize implements \Iterator {
18+
private $_item;
1819
private $_items = array();
1920
private $_index = 0;
2021
private $_length = 0;

0 commit comments

Comments
 (0)