Please update for PHP 7.4
-
Could you update on line 463 of /vendor/kint/inc/kintParser.class.php
The curly braces around the array to square brackets?
From this
if ( $key{0} === "\x00" ) { $access = $key{1} === "*" ? "protected" : "private";
to this
if ( $key[0] === "\x00" ) { $access = $key[1] === "*" ? "protected" : "private";
Thank you.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Please update for PHP 7.4’ is closed to new replies.