| Name | Size | Mode | Actions |
|---|---|---|---|
| Resources/ | - | 0755 | rm |
| bootstrap.php | 738 | 0644 | editdlrm |
| composer.json | 988 | 0644 | editdlrm |
| LICENSE | 1068 | 0644 | editdlrm |
| Php81.php | 710 | 0644 | editdlrm |
| README.md | 673 | 0644 | editdlrm |
/var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/polyfill-php81/Php81.php (710B)
* * @internal */ final class Php81 { public static function array_is_list(array $array): bool { if ([] === $array || $array === array_values($array)) { return true; } $nextKey = -1; foreach ($array as $k => $v) { if ($k !== ++$nextKey) { return false; } } return true; } }