Use PHP 7.4 featers and PHP 8 polyfills

This commit is contained in:
David Stone
2025-02-08 13:57:32 -07:00
parent 8bea6067cd
commit b41dc2b2eb
550 changed files with 15270 additions and 14627 deletions

View File

@ -78,7 +78,7 @@ class Arr {
public static function filter($array, $closure) {
if ($closure) {
$result = array();
$result = [];
foreach ($array as $key => $value) {
if (call_user_func($closure, $value, $key)) {
@ -145,7 +145,7 @@ class Arr {
$key = array_shift($keys);
if ( ! isset($array[ $key ]) || ! is_array($array[ $key ])) {
$array[ $key ] = array();
$array[ $key ] = [];
}
$array =& $array[ $key ];