From 0f503a790698cb36cf835e5c8d09cd4b64bf2325 Mon Sep 17 00:00:00 2001 From: Guillaume Seznec <767901+aerogus@users.noreply.github.com> Date: Tue, 4 Apr 2023 18:03:53 +0200 Subject: [PATCH] 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 --- lib/cli/arguments/Lexer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/cli/arguments/Lexer.php b/lib/cli/arguments/Lexer.php index a5a4767..3fb054b 100644 --- a/lib/cli/arguments/Lexer.php +++ b/lib/cli/arguments/Lexer.php @@ -15,6 +15,7 @@ use cli\Memoize; class Lexer extends Memoize implements \Iterator { + private $_item; private $_items = array(); private $_index = 0; private $_length = 0;