-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Love the plugin!!! THANK YOU!!!
With PHP7.4, array and string offset access syntax with curly braces is deprecated
PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in \wp-content\plugins\kint-php-debugger\src\kint-php\kint\inc\kintParser.class.php on line 463
PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in \wp-content\plugins\kint-php-debugger\src\kint-php\kint\inc\kintParser.class.php on line 465
Easy fix - replace line 463:
if ( $key{0} === "\x00" ) {
with:
if ( $key[0] === "\x00" ) {
and line 465:
$access = $key{1} === "*" ? "protected" : "private";
with:
$access = $key[1] === "*" ? "protected" : "private";
Hope this helps.
ProjectKarol
Metadata
Metadata
Assignees
Labels
No labels