Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Push one or more elements onto the end of array
<?php array_push(array &$array, mixed ...$values): int
<?php     protected function trackInRenderStack($component, $callback)

    {

        array_push(static::$renderStack, $component);



        return tap($callback(), function () {

            array_pop(static::$renderStack);
<?php     protected function pushOntoComponentStack($component)

    {

        array_push($this::$componentStack, $component);

    }



    protected function popOffComponentStack()