Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Remove a portion of the array and replace it with something else
<?php array_splice(    array &$array,    int $offset,    ?int $length = null,    mixed $replacement = []): array
<?php         if (\count($values) < \count($params)) {

            $params = \array_slice($params, 0, \count($values));

        } elseif (\count($values) > \count($params)) {

            $values[] = new EnumStub(array_splice($values, \count($params)), false);

            $params[] = $variadic;

        }

        if (['...'] === $params) {