| Name | Size | Mode | Actions |
|---|---|---|---|
| Resources/ | - | 0755 | rm |
| autoload.php | 685 | 0644 | editdlrm |
| bootstrap.php | 738 | 0644 | editdlrm |
| Php81.php | 710 | 0644 | editdlrm |
/usr/share/php/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; } }