Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Pop the element off the end of array
<?php array_pop(array &$array): mixed
<?php     public function removeList()

    {

        array_pop($this->list);

    }



    public function render()
<?php     public function removeList()

    {

        array_pop($this->list);

    }



    public function render()
<?php         $directories = preg_split('/[.\/(\\\\)]+/', $rawCommand);



        $camelCase = str(array_pop($directories))->camel();

        $kebabCase = str($camelCase)->kebab();



        $this->component = $kebabCase;
<?php     public function dehydrate($context)

    {


        app()->instance('redirect', array_pop(static::$redirectorCacheStack));



        $to = $this->storeGet('redirect');

        $usingNavigate = $this->storeGet('redirectUsingNavigate');
<?php     function endLivewireRendering()

    {

        array_pop(static::$livewireComponents);

    }



    static function currentRendering()
<?php         }



        return function () use ($removals) {

            while ($removals) array_pop($removals)();

        };

    }

}
<?php         array_push(static::$renderStack, $component);



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

            array_pop(static::$renderStack);

        });

    }
<?php     protected function popOffComponentStack()

    {

        array_pop($this::$componentStack);

    }



    protected function isRemoval($value) {