Your IP : 3.145.39.60


Current Path : /home/sudancam/public_html3/games/wp-content/plugins/mailpoet/vendor-prefixed/symfony/polyfill-php81/
Upload File :
Current File : //home/sudancam/public_html3/games/wp-content/plugins/mailpoet/vendor-prefixed/symfony/polyfill-php81/Php81.php

<?php
namespace MailPoetVendor\Symfony\Polyfill\Php81;
if (!defined('ABSPATH')) exit;
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;
 }
}